Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: GC Warning  (Read 19899 times)

0 Members and 1 Guest are viewing this topic.

jpwatson

    Topic Starter


    Rookie
    GC Warning
    « 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?
    JPWatson

    Bill Gates lives in constant fear that Chuck Norris' PC will crash.

    Rob Pomeroy



      Prodigy

    • Systems Architect
    • Thanked: 124
      • Me
    • Experience: Expert
    • OS: Other
    Re: GC Warning
    « Reply #1 on: May 28, 2009, 01:27:17 AM »
    I think this is an error being produced by a garbage collector (memory management system).  Are you doing any programming?  What were you doing just before this happened?
    Only able to visit the forums sporadically, sorry.

    Geek & Dummy - honest news, reviews and howtos

    jpwatson

      Topic Starter


      Rookie
      Re: GC Warning
      « Reply #2 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.
      JPWatson

      Bill Gates lives in constant fear that Chuck Norris' PC will crash.

      Aegis



        Expert

        Thanked: 67
        • Yes
        • Yes
        • Brian's Mess Of A Web Page
      • Experience: Experienced
      • OS: Windows 10
      Re: GC Warning
      « Reply #3 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?


      "For you, a thousand times over." - "The Kite Runner"

      jpwatson

        Topic Starter


        Rookie
        Re: GC Warning
        « Reply #4 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.
        JPWatson

        Bill Gates lives in constant fear that Chuck Norris' PC will crash.

        Aegis



          Expert

          Thanked: 67
          • Yes
          • Yes
          • Brian's Mess Of A Web Page
        • Experience: Experienced
        • OS: Windows 10
        Re: GC Warning
        « Reply #5 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.



        "For you, a thousand times over." - "The Kite Runner"

        cat-bomb



          Beginner
        • Thanked: 5
          • Insert Website Here
        • Experience: Beginner
        • OS: Windows 8
        Re: GC Warning
        « Reply #6 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?

        JJ 3000



          Egghead
        • Thanked: 237
        • Experience: Familiar
        • OS: Linux variant
        Re: GC Warning
        « Reply #7 on: May 29, 2009, 01:44:14 AM »
        Have you ran a virus scan since the message?
        Save a Life!
        Adopt a homeless pet.
        http://www.petfinder.com/

        jpwatson

          Topic Starter


          Rookie
          Re: GC Warning
          « Reply #8 on: May 29, 2009, 10:27:32 AM »
          Yes, I ran a virus scan as soon as we closed notepad.  Nothing came up.
          JPWatson

          Bill Gates lives in constant fear that Chuck Norris' PC will crash.

          BC_Programmer


            Mastermind
          • Typing is no substitute for thinking.
          • Thanked: 1140
            • Yes
            • Yes
            • BC-Programming.com
          • Certifications: List
          • Computer: Specs
          • Experience: Beginner
          • OS: Windows 11
          Re: GC Warning
          « Reply #9 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...
          I was trying to dereference Null Pointers before it was cool.

          Rob Pomeroy



            Prodigy

          • Systems Architect
          • Thanked: 124
            • Me
          • Experience: Expert
          • OS: Other
          Re: GC Warning
          « Reply #10 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.
          Only able to visit the forums sporadically, sorry.

          Geek & Dummy - honest news, reviews and howtos

          BC_Programmer


            Mastermind
          • Typing is no substitute for thinking.
          • Thanked: 1140
            • Yes
            • Yes
            • BC-Programming.com
          • Certifications: List
          • Computer: Specs
          • Experience: Beginner
          • OS: Windows 11
          Re: GC Warning
          « Reply #11 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.
          I was trying to dereference Null Pointers before it was cool.