2017-03-21 09:47:32 +00:00
|
|
|
#ifndef MACHINE_PRIVATE_H_
|
|
|
|
#define MACHINE_PRIVATE_H_
|
|
|
|
|
|
|
|
/*
|
|
|
|
* machinarium.
|
2017-03-21 09:58:58 +00:00
|
|
|
*
|
2017-03-21 09:47:32 +00:00
|
|
|
* cooperative multitasking engine.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define _GNU_SOURCE 1
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
|
|
|
|
#include <uv.h>
|
|
|
|
|
|
|
|
#include "machine.h"
|
2017-03-21 10:56:02 +00:00
|
|
|
#include "mm_macro.h"
|
2017-03-21 09:47:32 +00:00
|
|
|
#include "mm_list.h"
|
2017-03-21 09:58:58 +00:00
|
|
|
#include "mm_buf.h"
|
|
|
|
#include "mm_context.h"
|
2017-03-21 10:37:23 +00:00
|
|
|
#include "mm_operation.h"
|
|
|
|
#include "mm_fiber.h"
|
2017-03-21 10:56:02 +00:00
|
|
|
#include "mm_scheduler.h"
|
|
|
|
#include "mm.h"
|
2017-03-21 09:47:32 +00:00
|
|
|
|
|
|
|
#endif
|