|
From: Andre R. <and...@us...> - 2006-02-05 15:53:27
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28466 Modified Files: threads.c Log Message: Update name of global mutex for OPML Editor. Index: threads.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/threads.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** threads.c 11 Jan 2005 22:48:11 -0000 1.5 --- threads.c 5 Feb 2006 15:53:19 -0000 1.6 *************** *** 197,204 **** #ifdef PIKE hsharedthreadglobals = CreateMutex (NULL, false, "Pike Thread Globals"); ! #else hsharedthreadglobals = CreateMutex (NULL, false, "Frontier Thread Globals"); ! #endif ixlocalthreadglobals = TlsAlloc (); --- 197,208 ---- #ifdef PIKE + #ifndef OPMLEDITOR hsharedthreadglobals = CreateMutex (NULL, false, "Pike Thread Globals"); ! #else // OPMLEDITOR ! hsharedthreadglobals = CreateMutex (NULL, false, "OPML Thread Globals"); ! #endif // !OPMLEDITOR ! #else // !PIKE hsharedthreadglobals = CreateMutex (NULL, false, "Frontier Thread Globals"); ! #endif //!PIKE ixlocalthreadglobals = TlsAlloc (); |