mirror of
https://github.com/textmate/textmate.git
synced 2026-01-22 21:27:56 -05:00
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.
14 lines
230 B
C++
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 */
|