Files
textmate/Shared/include/oak/compat.h
Allan Odgaard 0e96a04d76 Remove compatibility checks
Since we now require 10.7 we don’t need all of this. Keeping it around is just noise that can lead to confusion about code paths.
2012-08-29 16:02:29 +02:00

14 lines
230 B
C++

#ifndef COMPAT_H_RD1Z6YZA
#define COMPAT_H_RD1Z6YZA
namespace oak
{
inline void set_thread_name (char const* threadName)
{
pthread_setname_np(threadName);
}
} /* oak */
#endif /* end of include guard: COMPAT_H_RD1Z6YZA */