libevl/include/evl/evl.h

43 lines
745 B
C
Raw Normal View History

/*
* SPDX-License-Identifier: MIT
*
* Copyright (C) 2018 Philippe Gerum <rpm@xenomai.org>
*/
2019-03-10 23:25:02 +08:00
#ifndef _EVL_EVL_H
#define _EVL_EVL_H
#include <signal.h>
2019-03-10 23:25:02 +08:00
#include <evl/clock.h>
#include <evl/mutex.h>
#include <evl/event.h>
2019-03-10 23:25:02 +08:00
#include <evl/sem.h>
#include <evl/syscall.h>
#include <evl/thread.h>
#include <evl/xbuf.h>
#include <evl/poll.h>
#include <evl/proxy.h>
#include <evl/utils.h>
#define __EVL__ 1 /* API revision */
#ifdef __cplusplus
extern "C" {
#endif
int evl_init(void);
2019-04-23 00:16:49 +08:00
int evl_sigevl_handler(int sig, siginfo_t *si, void *ctxt);
void evl_sigdebug_handler(int sig, siginfo_t *si, void *ctxt);
unsigned int evl_detect_fpu(void);
extern const char *libevl_version_string;
#ifdef __cplusplus
}
#endif
2019-03-10 23:25:02 +08:00
#endif /* _EVL_EVL_H */