Click here to Skip to main content
15,892,298 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: How often do you end of doing this? Pin
Manfred Rudolf Bihy14-May-19 10:05
professionalManfred Rudolf Bihy14-May-19 10:05 
GeneralRe: How often do you end of doing this? Pin
rnbergren14-May-19 13:37
rnbergren14-May-19 13:37 
GeneralRe: How often do you end of doing this? Pin
Marc Clifton14-May-19 7:06
mvaMarc Clifton14-May-19 7:06 
GeneralRe: How often do you end of doing this? Pin
rnbergren14-May-19 8:42
rnbergren14-May-19 8:42 
GeneralRe: How often do you end of doing this? Pin
kmoorevs14-May-19 7:40
kmoorevs14-May-19 7:40 
GeneralRe: How often do you end of doing this? Pin
OriginalGriff14-May-19 9:15
mveOriginalGriff14-May-19 9:15 
GeneralRe: How often do you end of doing this? Pin
rnbergren14-May-19 13:35
rnbergren14-May-19 13:35 
GeneralSome thoughts on the .net CLR/CLI Pin
honey the codewitch14-May-19 4:00
mvahoney the codewitch14-May-19 4:00 
I've always been kind of bummed about the universal garbage collection in .NET because you can't do realtime coding with a GC running in the background.

What I'd have liked to see, at the very least, is a segregated heap that wasn't collected, and an ability to suspend background collection.

You can kind of hack something like it into there using the large object heap and also using .NET 4+'s ability to reserve heap and suspend GC but it's non-optimal.

See, I'd really like to write VST plugins in C# for example, and while there are offerings to do so, they are not realtime. They are kinda realtime. Not good enough for live music performance.

Instead I'm forced to do it in something like C++ or *gasp* Delphi, which is costlier/more time consuming to write solid code with.


I'd be okay with C# code blocks (similar to unsafe) where realtime code could run but apparently that's too much to ask.

Also, I love garbage collection. Don't get me wrong. I even used it in C++ ISAPI server apps (using Boehm collector) for my strings in order to avoid heap fragmentation - in the right areas it can even improve performance.
When I was growin' up, I was the smartest kid I knew. Maybe that was just because I didn't know that many kids. All I know is now I feel the opposite.

GeneralRe: Some thoughts on the .net CLR/CLI Pin
OriginalGriff14-May-19 4:20
mveOriginalGriff14-May-19 4:20 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
honey the codewitch14-May-19 4:25
mvahoney the codewitch14-May-19 4:25 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
Member 1135403429-May-19 11:37
Member 1135403429-May-19 11:37 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
H.Brydon14-May-19 4:55
professionalH.Brydon14-May-19 4:55 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
honey the codewitch14-May-19 4:58
mvahoney the codewitch14-May-19 4:58 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
Sander Rossel14-May-19 9:07
professionalSander Rossel14-May-19 9:07 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
honey the codewitch14-May-19 9:23
mvahoney the codewitch14-May-19 9:23 
JokeRe: Some thoughts on the .net CLR/CLI Pin
Sander Rossel14-May-19 10:51
professionalSander Rossel14-May-19 10:51 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
Super Lloyd14-May-19 13:37
Super Lloyd14-May-19 13:37 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
honey the codewitch14-May-19 13:52
mvahoney the codewitch14-May-19 13:52 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
Super Lloyd14-May-19 14:04
Super Lloyd14-May-19 14:04 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
honey the codewitch14-May-19 14:28
mvahoney the codewitch14-May-19 14:28 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
Super Lloyd14-May-19 15:31
Super Lloyd14-May-19 15:31 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
honey the codewitch14-May-19 16:16
mvahoney the codewitch14-May-19 16:16 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
Super Lloyd14-May-19 16:44
Super Lloyd14-May-19 16:44 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
honey the codewitch14-May-19 16:48
mvahoney the codewitch14-May-19 16:48 
GeneralRe: Some thoughts on the .net CLR/CLI Pin
Super Lloyd14-May-19 17:13
Super Lloyd14-May-19 17:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.