Changes in uspace/lib/c/generic/io/io.c [82582e4:3629481] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/io.c
r82582e4 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); … … 173 171 } 174 172 *flags = (O_APPEND | O_CREAT) | (plus ? O_RDWR : O_WRONLY); 175 break;176 173 default: 177 174 errno = EINVAL; … … 325 322 326 323 if (stream->phone >= 0) 327 async_hangup(stream->phone);324 ipc_hangup(stream->phone); 328 325 329 326 if (stream->fd >= 0)
Note:
See TracChangeset
for help on using the changeset viewer.