Re: [sqlite] CE locking -- review the code

2006-01-17 Thread Robert Simpson
- Original Message - From: "Simon Posnjak" <[EMAIL PROTECTED]> Robert Simpson wrote: For your convenience, I've updated the code at the previous link I supplied with the latest os_win.c that I am using against the 3.3.1 alpha. Thank you. It works super with my application on WinCE

Re: [sqlite] CE locking -- review the code

2006-01-17 Thread Simon Posnjak
Robert Simpson wrote: - Original Message - From: "Simon Posnjak" <[EMAIL PROTECTED]> Robert Simpson wrote: I incorporated the locks into the latest CVS version of os_win.c and it's available here: http://sqlite.phxsoftware.com/os_win.c Would i be possible to post the whole src?

Re: [sqlite] CE locking -- review the code

2006-01-16 Thread Robert Simpson
- Original Message - From: "Simon Posnjak" <[EMAIL PROTECTED]> Robert Simpson wrote: I incorporated the locks into the latest CVS version of os_win.c and it's available here: http://sqlite.phxsoftware.com/os_win.c Would i be possible to post the whole src? (Taking the 3.3.1 src

Re: [sqlite] CE locking -- review the code

2006-01-16 Thread Simon Posnjak
Robert Simpson wrote: - Original Message - From: "Doug Nebeker" <[EMAIL PROTECTED]> Two comments: * This should only be used for Windows CE as-is. On Windows XP/2000/2003(?)/Terminal Services you should probably add "Global\" to the front of the mutex name so the lock is truly

Re: [sqlite] CE locking -- review the code

2006-01-09 Thread Robert Simpson
- Original Message - From: "Doug Nebeker" <[EMAIL PROTECTED]> Two comments: * This should only be used for Windows CE as-is. On Windows XP/2000/2003(?)/Terminal Services you should probably add "Global\" to the front of the mutex name so the lock is truly system wide. Unforunately,

RE: [sqlite] CE locking -- review the code

2006-01-09 Thread Doug Nebeker
Two comments: * This should only be used for Windows CE as-is. On Windows XP/2000/2003(?)/Terminal Services you should probably add "Global\" to the front of the mutex name so the lock is truly system wide. Unforunately, you'd have to query Windows to see whether that prefix could/should be

RE: [sqlite] CE locking -- review the code

2006-01-07 Thread Robert Simpson
> -Original Message- > From: Isaac Raway [mailto:[EMAIL PROTECTED] > > Upon a quick readthrough I noted that the filename is > concated into the > Mutex name as-is. This is potentially dangerous given that > Windows file > systems are not case sensitive and yet according to the

Re: [sqlite] CE locking -- review the code

2006-01-07 Thread Isaac Raway
Robert Simpson wrote: Please have a look at it and poke some holes in it. Upon a quick readthrough I noted that the filename is concated into the Mutex name as-is. This is potentially dangerous given that Windows file systems are not case sensitive and yet according to the CreateMutex