Changeset 10618 in orxonox.OLD for trunk/src/lib/util
- Timestamp:
- Apr 4, 2007, 12:13:53 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 3 deleted
- 8 edited
- 8 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 16 16 OrxonoxPlayability.kdevses 17 17 OrxonoxPlayability.kdevelop.pcs 18 orxonox.backtrace 19 orxonox.kdevses 20 orxonox.kdevelop.pcs
-
- Property svn:ignore
-
trunk/src/lib/util
-
Property
svn:ignore
set to
.deps
Makefile
Makefile.in
*.a
-
Property
svn:ignore
set to
-
trunk/src/lib/util/Makefile.am
r9869 r10618 29 29 filesys/net_link.cc \ 30 30 \ 31 thread ing.cc \31 threads/thread.cc \ 32 32 timer.cc 33 33 … … 63 63 filesys/net_link.h \ 64 64 \ 65 threading.h \ 65 threads/threading.h \ 66 threads/thread.h \ 67 threads/mutex.h \ 68 threads/mutex_locker.h \ 69 \ 66 70 timer.h \ 67 71 \ … … 77 81 loading/dynamic_loader.h \ 78 82 \ 79 count_pointer.h \ 80 list.h 83 count_pointer.h -
trunk/src/lib/util/debug_buffer.cc
r9869 r10618 20 20 #include "debug.h" 21 21 #include "compiler.h" 22 #include "thread ing.h"22 #include "threads/mutex_locker.h" 23 23 24 24 /** … … 64 64 static OrxThread::Mutex DebugBuffer__bufferMutex; 65 65 66 OrxThread::MutexLock bufferLock(&DebugBuffer__bufferMutex);66 OrxThread::MutexLocker bufferLock(&DebugBuffer__bufferMutex); 67 67 68 68 va_list arguments; -
trunk/src/lib/util/filesys/net_link.cc
r9406 r10618 17 17 #include "debug.h" 18 18 19 #include "threads/mutex_locker.h" 19 20 20 21 #ifdef __OSX__ … … 45 46 int NetLink::openupInBrowser(void* url) 46 47 { 47 OrxThread::MutexLock lock(&NetLink::_mutex);48 OrxThread::MutexLocker lock(&NetLink::_mutex); 48 49 49 50 std::string URL = *(std::string*)url; … … 69 70 void NetLink::setDefaultBrowser(const std::string& browserName) 70 71 { 71 OrxThread::MutexLock lock(&NetLink::_mutex);72 OrxThread::MutexLocker lock(&NetLink::_mutex); 72 73 NetLink::_defaultBrowser = browserName; 73 74 } -
trunk/src/lib/util/filesys/net_link.h
r9406 r10618 19 19 #include <list> 20 20 21 #include "thread ing.h"21 #include "threads/mutex.h" 22 22 23 23 //! NetLink is a File and Link executer for Internet Links -
trunk/src/lib/util/loading/game_loader.cc
r9869 r10618 23 23 #include "debug.h" 24 24 #include "campaign.h" 25 #include "compiler.h" 25 26 26 27 #include "key_mapper.h" -
trunk/src/lib/util/loading/game_loader.h
r9869 r10618 9 9 //#include "stdincl.h" 10 10 #include "story_def.h" 11 #include "comincl.h"12 11 #include "event_listener.h" 13 12
Note: See TracChangeset
for help on using the changeset viewer.