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
+2 -2
View File
@@ -3,8 +3,8 @@
#define _INCLUDE_SOURCEPAWN_JIT_RUNTIME_H_
#include <sp_vm_api.h>
#include <ke_vector.h>
#include <ke_inline_list.h>
#include <am-vector.h>
#include <am-inline-list.h>
#include "jit_shared.h"
#include "sp_vm_function.h"
+1 -1
View File
@@ -3,7 +3,7 @@
#define _INCLUDE_SOURCEPAWN_JIT2_FUNCTION_H_
#include <sp_vm_types.h>
#include <ke_vector.h>
#include <am-vector.h>
struct LoopEdge
{
+1 -1
View File
@@ -19,7 +19,7 @@
#include <stddef.h>
#include <stdint.h>
#include <ke_thread_utils.h>
#include <am-thread-utils.h>
typedef bool (*WatchdogCallback)();
+2 -2
View File
@@ -21,13 +21,13 @@
#include <sp_vm_api.h>
#include <KeCodeAllocator.h>
#include <macro-assembler-x86.h>
#include <ke_vector.h>
#include <am-vector.h>
#include "jit_shared.h"
#include "BaseRuntime.h"
#include "sp_vm_basecontext.h"
#include "jit_function.h"
#include "opcodes.h"
#include <ke_thread_utils.h>
#include <am-thread-utils.h>
using namespace SourcePawn;