Dolda2000 GitWeb
/
ashd.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
doc: Added manpage for errlogger.
[ashd.git]
/
lib
/
mtio.h
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
1
#ifndef _LIB_MTIO_H
2
#define _LIB_MTIO_H
3
4
#include <stdio.h>
5
6
#define EV_READ 1
7
#define EV_WRITE 2
8
9
int block(int fd, int ev, time_t to);
10
void ioloop(void);
11
FILE *mtstdopen(int fd, int issock, int timeout, char *mode);
12
13
#endif