1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-22 02:15:28 +00:00
Interlisp.maiko/inc/timerdefs.h
Bruce Mitchener 2dcdf14334
Migrate to POSIX signals. (#190)
This removes SYSVSIGNALS as we're always and only using POSIX
signals now.

Some platform differences have been papered over. We used to
only ignore SIGPIPE when using BSD signals, but we now ignore
it all the time.

While the SIGFPE code will now compile, it hasn't been updated
to work on modern OSes fully yet as it will need to enable
the correct FP exceptions.
2021-01-09 04:55:39 +00:00

18 lines
447 B
C

#ifndef TIMERDEFS_H
#define TIMERDEFS_H 1
void update_miscstats(void);
void init_miscstats(void);
LispPTR subr_gettime(LispPTR args[]);
void subr_settime(LispPTR args[]);
void subr_copytimestats(LispPTR args[]);
LispPTR N_OP_rclk(LispPTR tos);
void update_timer(void);
void int_io_open(int fd);
void int_io_close(int fd);
void int_block(void);
void int_unblock(void);
void int_timer_off(void);
void int_timer_on(void);
void int_init(void);
#endif