Rename ke_* headers to am-*

--HG--
rename : public/amtl/ke_allocator_policies.h => public/amtl/am-allocator-policies.h
rename : public/amtl/ke_inline_list.h => public/amtl/am-inline-list.h
rename : public/amtl/ke_thread_posix.h => public/amtl/am-thread-posix.h
rename : public/amtl/ke_thread_utils.h => public/amtl/am-thread-utils.h
rename : public/amtl/ke_thread_windows.h => public/amtl/am-thread-windows.h
rename : public/amtl/ke_utility.h => public/amtl/am-utility.h
rename : public/amtl/ke_vector.h => public/amtl/am-vector.h
This commit is contained in:
David Anderson
2013-08-22 17:10:59 -07:00
parent de8726ab73
commit c373527851
18 changed files with 27 additions and 20 deletions
@@ -24,10 +24,16 @@
#else
# include <pthread.h>
#endif
#include <ke_utility.h>
#include <am-utility.h>
// Thread primitives for SourcePawn.
//
// Linking Requirements:
//
// OS X: None (-lpthread and -ldl are optional)
// Windows: None
// Linux: -lpthread -lrt required
//
// -- Mutexes --
//
// A Lockable is a mutual exclusion primitive. It can be owned by at most one
@@ -238,9 +244,9 @@ class IRunnable
// Include the actual thread implementations.
#if defined(_MSC_VER)
# include "ke_thread_windows.h"
# include "am-thread-windows.h"
#else
# include "ke_thread_posix.h"
# include "am-thread-posix.h"
#endif
#endif // _include_sourcepawn_threads_
@@ -21,8 +21,8 @@
#include <new>
#include <stdlib.h>
#include <ke_allocator_policies.h>
#include <ke_utility.h>
#include <am-allocator-policies.h>
#include <am-utility.h>
namespace ke {