Posted June 24, 2019

fr33kSh0w2012
CyberFAGGOT 20 DOGSHITS!
Registered: Jul 2009
From Australia

dtgreene
vaccines work she/her
Registered: Jan 2010
From United States
Posted June 24, 2019
Except that there's heavy DRM on those disks, to the point where I don't think you can watch recent ones under Linux.

mystikmind2000
New User
Registered: Sep 2012
From Australia
Posted June 24, 2019
Not just games.....
I dont know why a modern super fast computer can take longer to close a program than it did to open it??? Or especially closing webpages! I told it to close the webpage, What is there to think about? JUST F___ING CLOSE IT!!!!
I dont know why a modern super fast computer can take longer to close a program than it did to open it??? Or especially closing webpages! I told it to close the webpage, What is there to think about? JUST F___ING CLOSE IT!!!!

GamezRanker
Disagreement Verboten!
Registered: Sep 2010
From United States
Posted June 24, 2019



dtgreene
vaccines work she/her
Registered: Jan 2010
From United States
Posted June 24, 2019

I dont know why a modern super fast computer can take longer to close a program than it did to open it??? Or especially closing webpages! I told it to close the webpage, What is there to think about? JUST F___ING CLOSE IT!!!!
Incidentally, I have seen some programs that actually don't bother to free() their malloc()ed memory when they quit, relying on the OS to take care of that.
(Before anyone mentions that this is C-centric, I should point out that programs written in other languages still have to allocate and free memory, even garbage-collected languages like Java (garbage collection isn't free, you know) and reference counted languages like Python. And then, of course, there's JavaScript, which is quite relevant to this situation.)

mystikmind2000
New User
Registered: Sep 2012
From Australia
Posted June 25, 2019

I dont know why a modern super fast computer can take longer to close a program than it did to open it??? Or especially closing webpages! I told it to close the webpage, What is there to think about? JUST F___ING CLOSE IT!!!!

Incidentally, I have seen some programs that actually don't bother to free() their malloc()ed memory when they quit, relying on the OS to take care of that.
(Before anyone mentions that this is C-centric, I should point out that programs written in other languages still have to allocate and free memory, even garbage-collected languages like Java (garbage collection isn't free, you know) and reference counted languages like Python. And then, of course, there's JavaScript, which is quite relevant to this situation.)
I suppose, i just get curious to what the computer is doing when it decided to take a long time to close something? i am like " I told it to close the program, WTF is it doing?" Fascinating?
Post edited June 25, 2019 by mystikmind2000

mrcrispy83
*Kicks shin*
Registered: Sep 2011
From United States
Posted June 25, 2019
Spectral Souls was notorious for being so poorly optimized that basically everything requiring disc access times. animations, text/portraits in cutscenes etc..

dtgreene
vaccines work she/her
Registered: Jan 2010
From United States
Posted June 25, 2019

Incidentally, I have seen some programs that actually don't bother to free() their malloc()ed memory when they quit, relying on the OS to take care of that.
(Before anyone mentions that this is C-centric, I should point out that programs written in other languages still have to allocate and free memory, even garbage-collected languages like Java (garbage collection isn't free, you know) and reference counted languages like Python. And then, of course, there's JavaScript, which is quite relevant to this situation.)

I suppose, i just get curious to what the computer is doing when it decided to take a long time to close something? i am like " I told it to close the program, WTF is it doing?" Fascinating?
Note that this slow browser tab closing, at least for this reason, should be more likely if programs have used a large amount of RAM recently (for example, if the tab was open when you had a lot of tabs open).
(There's also, of course, the dreaded memory leak; when a process allocates memory and forgets about it without freeing it; this leads to issues where areas of memory are unused but the OS still thinks they're in use, which will slow down the system when it comes time to swap it out, and the unused memory might share a page with memory that's actually used. At least it's not as bad as the memory corruption that happens if a program uses memory it's already freed.)
Much of this behavior is non-deterministic, as it depends on what else is going on in the machine; hence why you might notice different behavior at different times.

BlueMooner
Blue User
Registered: Jun 2012
From United States