2022-12-26 22:12:53 +00:00
|
|
|
#include <stdio.h>
|
2022-12-28 18:41:04 +00:00
|
|
|
#include <stddef.h>
|
2023-01-09 18:26:33 +00:00
|
|
|
#include <stdlib.h>
|
2022-12-28 18:41:04 +00:00
|
|
|
#include <inttypes.h>
|
2023-01-09 18:26:33 +00:00
|
|
|
#include <time.h>
|
2023-01-22 20:21:29 +00:00
|
|
|
#include <assert.h>
|
2022-12-28 18:41:04 +00:00
|
|
|
#include <sys/mman.h>
|
2023-01-08 12:13:59 +00:00
|
|
|
#include <socks/types.h>
|
2023-01-19 20:52:56 +00:00
|
|
|
#include <socks/btree.h>
|
2022-12-29 19:47:25 +00:00
|
|
|
#include <socks/memblock.h>
|
2023-01-19 20:52:56 +00:00
|
|
|
#include <socks/vm.h>
|
2022-12-28 18:41:04 +00:00
|
|
|
|
2023-01-26 20:36:11 +00:00
|
|
|
extern int memory_test(void);
|
|
|
|
|
extern int btree_test(void);
|
2023-01-27 21:04:26 +00:00
|
|
|
extern int queue_test(void);
|
2023-01-19 20:52:56 +00:00
|
|
|
|
|
|
|
|
int main(int argc, const char **argv)
|
|
|
|
|
{
|
2023-01-28 19:24:28 +00:00
|
|
|
memory_test();
|
2023-01-27 21:04:26 +00:00
|
|
|
return 0;
|
2023-01-19 20:52:56 +00:00
|
|
|
}
|