]> git.saurik.com Git - apple/system_cmds.git/blob - msa/global.h
system_cmds-670.1.2.tar.gz
[apple/system_cmds.git] / msa / global.h
1 //
2 // global.h
3 // msa
4 //
5 // Created by James McIlree on 2/1/14.
6 // Copyright (c) 2014 Apple. All rights reserved.
7 //
8
9 #ifndef msa_global_h
10 #define msa_global_h
11
12 #include <CPPUtil/CPPUtil.h>
13
14 using namespace util;
15
16 #include <KDBG/KDebug.h>
17
18 #include <signal.h>
19
20 #include <libkern/OSAtomic.h>
21
22 #include <vector>
23 #include <unordered_map>
24 #include <thread>
25 #include <tuple>
26
27 __attribute__((noreturn)) void usage(const char *);
28
29 #include "Globals.hpp"
30 #include "EventRingBuffer.hpp"
31 #include "PrintBuffer.hpp"
32 #include "Action.hpp"
33 #include "ReadTraceFileAction.hpp"
34 #include "WriteTraceFileAction.hpp"
35 #include "LiveTraceAction.hpp"
36 #include "Printing.hpp"
37 #include "EventProcessing.hpp"
38 #include "VoucherContentSysctl.hpp"
39
40 #endif