Computer Hope

Other => Other => Topic started by: jpwatson on May 27, 2009, 03:49:50 PM

Title: GC Warning
Post by: jpwatson on May 27, 2009, 03:49:50 PM
I recently received a warning on my PC that read "GC Warning: Removing nonexistent thread 25272".  The warning just appeared in notepad.  Does anyone know what this is?  Should I be concerned?
Title: Re: GC Warning
Post by: Rob Pomeroy on May 28, 2009, 01:27:17 AM
I think this is an error being produced by a garbage collector (http://en.wikipedia.org/wiki/Garbage_collection_(computer_science)) (memory management system).  Are you doing any programming?  What were you doing just before this happened?
Title: Re: GC Warning
Post by: jpwatson on May 28, 2009, 10:52:48 AM
My daughter was playing a game online.  I just happened to be standing behind her when notepad suddenly opened up.
Title: Re: GC Warning
Post by: Aegis on May 28, 2009, 11:02:37 AM
May we ask what site she was visiting, and what game she was playing at the time?
Title: Re: GC Warning
Post by: jpwatson on May 28, 2009, 12:47:32 PM
it was http://www.gogirlsgames.com (no porn lol) and she was playing some kind of horse game.  Goodness this sounds really bad.
Title: Re: GC Warning
Post by: Aegis on May 28, 2009, 01:02:14 PM
No, not at all!  The Internet is now almost incomprehesively large, and it's only a small percentage of the 'net which gets publicity of any kind -- Twitter, Facebook, etc., and p-rn.

Title: Re: GC Warning
Post by: cat-bomb on May 28, 2009, 04:03:28 PM
It could possibly be internet predators or just plain hackers hacking your pc using java apps. So were the games in java?
Title: Re: GC Warning
Post by: JJ 3000 on May 29, 2009, 01:44:14 AM
Have you ran a virus scan since the message?
Title: Re: GC Warning
Post by: jpwatson on May 29, 2009, 10:27:32 AM
Yes, I ran a virus scan as soon as we closed notepad.  Nothing came up.
Title: Re: GC Warning
Post by: BC_Programmer on May 29, 2009, 10:30:13 AM
It could possibly be internet predators or just plain hackers hacking your pc using java apps. So were the games in java?


pure conjecture and speculation. "hacking using java apps"...  ::) yeah. they would probably have better luck trying to hack into somebody's machine using a Doom configuration file...
Title: Re: GC Warning
Post by: Rob Pomeroy on May 29, 2009, 10:37:49 AM

pure conjecture and speculation. "hacking using java apps"...  ::) yeah. they would probably have better luck trying to hack into somebody's machine using a Doom configuration file...
I suggest you Google "java vulnerabilities".

Back to the topic on hand, it would seem that this was an error generated by a failure of a program, almost certainly related to the game the OP's daughter was playing.  Nothing to worry about.
Title: Re: GC Warning
Post by: BC_Programmer on May 29, 2009, 07:42:28 PM
Quote
Java is essentially a safe language with good security features. A review of the US-CERT vulnerability database found no vulnerabilities that were not the result of implementation bugs [US-CERT 05]. Java and Java Virtual Machine Security [LSOD 02] and Securing Java [McGraw 99] also describe some Java vulnerabilities that have resulted from implementation bugs. However, there are a number of Java features and facilities that an unwary user might not realize could compromise safety.

It's basically not a question of wether vulnerabilities exist, but more a question of wether Java is ever the choice of a hacker, with all the sandboxes and tough security that is part of the specification. VB or another less strict language is often employed. Strangely even so it is not considered an "exploit" on the Runtime...


And, as Rob said this particular case seems more like one where the game was closed and a few threads were still running, and whilel trying to switch to another thread the thread was found to be nonexistent (it exited properly) and was thus deleted.