mirror of https://github.com/yandex/odyssey.git
35 lines
522 B
C
35 lines
522 B
C
#ifndef FT_PRIVATE_H_
|
|
#define FT_PRIVATE_H_
|
|
|
|
/*
|
|
* flint.
|
|
*
|
|
* 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"
|
|
#include "ft_list.h"
|
|
#include "ft_buf.h"
|
|
#include "ft_context.h"
|
|
#include "ft_op.h"
|
|
#include "ft_fiber.h"
|
|
#include "ft_scheduler.h"
|
|
#include "ft.h"
|
|
#include "ft_io.h"
|
|
|
|
#endif
|