1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-04-27 04:47:10 +00:00

Replace int_timer_on|off with int_(un)block. (#193)

Both were used, but one just called the other, so simplify
the API.
This commit is contained in:
Bruce Mitchener
2021-01-09 12:38:54 +07:00
committed by GitHub
parent f3b52564e4
commit 0e3d3acd4e
4 changed files with 6 additions and 11 deletions

View File

@@ -11,7 +11,5 @@ 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