Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10575 in orxonox.OLD


Ignore:
Timestamp:
Feb 7, 2007, 9:22:45 PM (17 years ago)
Author:
bensch
Message:

simple threads splited up into multiple files

Location:
branches/cleanup/src
Files:
2 added
4 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • branches/cleanup/src/Makefile.am

    r10571 r10575  
    4646                $(StoryEntities_HEADERS_) \
    4747                orxonox.h \
    48                 ability.h \
    4948                defs/stdlibincl.h \
    5049                defs/sdlincl.h \
  • branches/cleanup/src/lib/sound/ogg_player.h

    r9869 r10575  
    1313#include <ogg/ogg.h>
    1414#include <vorbis/vorbisfile.h>
    15 #include "util/threading.h"
     15#include "util/threads/threading.h"
    1616
    1717struct File;
  • branches/cleanup/src/lib/sound/sound_engine.h

    r9869 r10575  
    1515#include <list>
    1616#include <stack>
    17 #include "threading.h"
     17#include "threads/threading.h"
    1818
    1919#define SOUND_DOPPLER_FACTOR       0.001          //!< A factor for the audible doppler effect
  • branches/cleanup/src/lib/util/Makefile.am

    r9869 r10575  
    2929                filesys/net_link.cc \
    3030                \
    31                 threading.cc \
     31                threads/thread.cc \
    3232                timer.cc
    3333
     
    6363                filesys/net_link.h \
    6464                \
    65                 threading.h \
     65                threads/threading.h \
     66                threads/thread.h \
     67                threads/mutex.h \
     68                threads/mutex_locker.h \
     69                \
    6670                timer.h \
    6771                \
  • branches/cleanup/src/lib/util/debug_buffer.cc

    r9869 r10575  
    2020#include "debug.h"
    2121#include "compiler.h"
    22 #include "threading.h"
     22#include "threads/threading.h"
    2323
    2424/**
  • branches/cleanup/src/lib/util/filesys/net_link.h

    r9406 r10575  
    1919#include <list>
    2020
    21 #include "threading.h"
     21#include "threads/threading.h"
    2222
    2323//! NetLink is a File and Link executer for Internet Links
Note: See TracChangeset for help on using the changeset viewer.