Changes in uspace/lib/c/generic/io/io.c [47b7006:3629481] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/io.c
r47b7006 r3629481 41 41 #include <bool.h> 42 42 #include <malloc.h> 43 #include <async.h>44 43 #include <io/klog.h> 45 44 #include <vfs/vfs.h> 46 45 #include <ipc/devmap.h> 47 46 #include <adt/list.h> 48 #include "../private/io.h"49 47 50 48 static void _ffillbuf(FILE *stream); … … 324 322 325 323 if (stream->phone >= 0) 326 async_hangup(stream->phone);324 ipc_hangup(stream->phone); 327 325 328 326 if (stream->fd >= 0)
Note:
See TracChangeset
for help on using the changeset viewer.