2016-11-08 11:49:32 +00:00
|
|
|
#ifndef FT_PRIVATE_H_
|
|
|
|
#define FT_PRIVATE_H_
|
|
|
|
|
|
|
|
/*
|
|
|
|
* libfluent.
|
|
|
|
*
|
|
|
|
* 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 <ucontext.h>
|
|
|
|
|
|
|
|
#include <uv.h>
|
|
|
|
|
|
|
|
#include "ft_macro.h"
|
2016-11-08 11:51:10 +00:00
|
|
|
#include "ft_list.h"
|
2016-11-08 12:01:27 +00:00
|
|
|
#include "ft_context.h"
|
2016-11-08 11:49:32 +00:00
|
|
|
|
|
|
|
#endif
|