#include <stdio.h>
#include <stdlib.h>
#include "../../include.mie/mie_thread.h"
#include "xbyak/xbyak.h"
Go to the source code of this file.
◆ main()
int main |
( |
int | argc, |
|
|
char * | argv[] ) |
Definition at line 58 of file test_mmx.cpp.
59{
60#ifdef XBYAK32
61 puts("32bit");
62#else
63 puts("64bit");
64#endif
65 try {
66 int n = atoi(argc == 1 ?
"1223" :
argv[1]);
68 test0.beginThread();
70
71 test0.joinThread();
73 } catch (std::exception& e) {
74 printf(
"ERR:%s\n", e.what());
75 } catch (...) {
77 }
78}
LOGGING_API void printf(Category category, const char *format,...)