PDA

View Full Version : Boxee Crash (hard coded reference in source?)



mra
December 1st, 2008, 04:47 AM
Boxee crashed on me, I noticed the following in the logs which looks like a hard coded reference to a developers machine? (appeared well over 100 times in the log)

16:25:16 T:2689257376 M: 27844608 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:25:31 T:2689257376 M: 28106752 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:25:46 T:2689257376 M: 27254784 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:26:01 T:2689257376 M: 27541504 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:26:16 T:2689257376 M: 26800128 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:26:31 T:2689257376 M: 27054080 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:26:46 T:2689257376 M: 26267648 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:27:02 T:2689257376 M: 26554368 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:27:17 T:2689257376 M: 28553216 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:27:32 T:2689257376 M: 28815360 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:27:47 T:2689257376 M: 28020736 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:28:01 T:2689257376 M: 28307456 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:28:16 T:2689257376 M: 27504640 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:28:31 T:2689257376 M: 27242496 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:28:46 T:2689257376 M: 26959872 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:29:01 T:2689257376 M: 26726400 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/TextureManager.cpp function:LoadToGPU line:1066
16:29:12 T:2961453056 M: 33443840 ERROR: staticThread - Unhandled exception caught in thread process, attemping cleanup in OnExit
21:46:29 T:2964168704 M: 41963520 NOTICE: ES: Client from 127.0.0.1 timed out

bullsO
December 1st, 2008, 01:59 PM
Got the same thing, except another function
(Appears about 40 times each second in the log)...

20:32:14 T:2684407808 M: 23371776 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/GraphicContext.cpp function:EndPaint line:1376
20:32:14 T:2684407808 M: 23425024 ERROR: In file:/Users/roeevulkan/boxee/source/shiraz/guilib/GraphicContext.cpp function:EndPaint line:1376

Tom Dibble
December 1st, 2008, 02:23 PM
This (the reference to a file which doesn't exist on your box) is normal. It refers to the source code file's location on the developer's box at the time Boxee was compiled. Specifically, it's usually a "__FILE__" macro in the source which expands to the specific file location. It's common practice to use this so that when an error report comes in the developer can go directly to the line in the source code which caused it (although often the actual error is elsewhere and so more digging is necessary to debug ... but that file and line number gives an important bit of information).

The point is, that's good for debugging, not much use to you.

For the error itself, it sounds like something is going awry in the GPU code.