Unoffical empeg BBS

Quick Links: Empeg FAQ | RioCar.Org | Hijack | BigDisk Builder | jEmplode | emphatic
Repairs: Repairs

Topic Options
#7770 - 08/03/2000 13:02 Sync Failure: Stage 5, 0x80070002
ClemsonJeep
enthusiast

Registered: 09/11/1999
Posts: 398
Loc: Ashburn, VA
Just was adding one song and it looked like it was running fdisk, when I came back this error was up. Going to try it again to see if it persists before emailing bugs@...

...running developer 9c with correct emplode, etc.

(O|||||O)

_________________________
(O|||||O)

Top
#7771 - 08/03/2000 13:05 Re: Sync Failure: Stage 5, 0x80070002 [Re: ClemsonJeep]
ClemsonJeep
enthusiast

Registered: 09/11/1999
Posts: 398
Loc: Ashburn, VA
Update: Worked fine after the next sync... Not going to report it.

(Might have been because that file was open (and paused) in WinAmp, didn't notice until after the error, so it might have been a sharing error.)

(O|||||O)

_________________________
(O|||||O)

Top
#7772 - 09/03/2000 04:42 Re: Sync Failure: Stage 5, 0x80070002 [Re: ClemsonJeep]
mac
addict

Registered: 20/05/1999
Posts: 411
Loc: Cambridge, UK
It was actually a 'file not found' error. This could be a badly reported file in use error but that is unlikely.

emplode should probably cope better with this by recording the fact that the file was missing (or in use) and just carry on.

--
Mike Crowe
I may not be speaking on behalf of empeg above :-)
_________________________
--
Mike Crowe

Top
#7773 - 09/03/2000 12:21 Re: Sync Failure: Stage 5, 0x80070002 [Re: mac]
ClemsonJeep
enthusiast

Registered: 09/11/1999
Posts: 398
Loc: Ashburn, VA
It was actually a 'file not found' error. This could be a badly reported file in use error but that is unlikely.

Do you think it would be possible for you to post your "errors.h" file for the player? :) It would be cool to have been able to look at that error code and see a FILE_NOT_FOUND #define or something... Granted half the time it might not help, but it still would be kinda useful to those of us who know how to use it. :)

(O|||||O)

_________________________
(O|||||O)

Top
#7774 - 09/03/2000 13:50 Re: Sync Failure: Stage 5, 0x80070002 [Re: ClemsonJeep]
altman
carpal tunnel

Registered: 19/05/1999
Posts: 3457
Loc: Palo Alto, CA
I think I'm correct in saying that any 0x8xxxxxxx errors are windows errors, and the error numbers will be somewhere in the Win32 api header files. The 0xffffxxxx ones are generally ours.

Hugo



Top
#7775 - 09/03/2000 16:55 Re: Sync Failure: Stage 5, 0x80070002 [Re: altman]
mac
addict

Registered: 20/05/1999
Posts: 411
Loc: Cambridge, UK
I think I'm correct in saying that any 0x8xxxxxxx errors are windows errors, and the error numbers will be somewhere in the Win32 api header files. The 0xffffxxxx ones are generally ours.

Anything starting with 0x8 is an HRESULT which is a Windows/COM thing. Facility 7 (i.e. 0x8007) is a Windows API error so you can find out the real error message by taking the bottom four digits, converting them to decimal and looking them up in winerror.h if you have Visual C++ installed.

Anything starting with 0xf is probably one of ours. It may be a Linux error which you can decipher by two's complimenting it, converting to decimal and looking it up in /usr/include/asm/errno.h on a Linux box.

There are a few oddballs which don't fit this pattern.

Of course simple errors like the one described here should be dealt with more elegantly by emplode.

--
Mike Crowe
I may not be speaking on behalf of empeg above :-)
_________________________
--
Mike Crowe

Top
#7776 - 12/03/2000 20:28 Re: Sync Failure: Stage 5, 0x80070002 [Re: ClemsonJeep]
tfabris
carpal tunnel

Registered: 20/12/1999
Posts: 31565
Loc: Seattle, WA
(Might have been because that file was open (and paused) in WinAmp, didn't notice until after the error, so it might have been a sharing error.)

I've been able to synch songs whilst playing them in WinAmp, so that might not be it.

In general, I've been impressed with WinAmp's ability to allow other things to open and read the file simultaneously. Winamp makes sure to open the file for reading only, and as long as the other app doesn't ask for a "write", the two programs can double-team the file quite nicely.

Depending on your system, it could be something more like WinAmp's playback or vis was grabbing too many cycles (or perhaps too many interrupts since the USB port is interrupt-driven)? Dunno much about this stuff, just shooting in the dark here.

Anyone else have more info on this?

Tony Fabris
Empeg #144
_________________________
Tony Fabris

Top
#7777 - 13/03/2000 13:45 Re: Sync Failure: Stage 5, 0x80070002 [Re: tfabris]
ClemsonJeep
enthusiast

Registered: 09/11/1999
Posts: 398
Loc: Ashburn, VA
Depending on your system, it could be something more like WinAmp's playback or vis was grabbing too many cycles (or perhaps too many interrupts since the USB port is interrupt-driven)? Dunno much about this stuff, just shooting in the dark here.

Actually, once they mentioned the "File not Found" error, I thought about it and I had remembered I was moving files around on my drives, and that was one of them, so the error makes complete sense. I didn't notice it was a WinAPI error. If I had, I would have looked it up, as I'm well versed in the Winblows API.

Silly me. :)

(O|||||O)

_________________________
(O|||||O)

Top