L4Re/departure

libext2fs/lib/libe2p/setversion.c

617:2733e5770ee9
9 months ago Paul Boddie Made the run command wait for completion, introducing the spawn command to run programs in the background. Introduced conveniences for waiting for the last job to be initiated and for piping from the last job, also subscribing to signals from pipe-supplying jobs so that they may be transparently removed from the job list upon completion. Augmented the job listing with the "+" notation familiar from Unix. Prevented new jobs from being started when no job slots are available.
     1 /*     2  * setversion.c		- Set a file version on an ext2 file system     3  *     4  * Copyright (C) 1993, 1994  Remy Card <card@masi.ibp.fr>     5  *                           Laboratoire MASI, Institut Blaise Pascal     6  *                           Universite Pierre et Marie Curie (Paris VI)     7  *     8  * %Begin-Header%     9  * This file may be redistributed under the terms of the GNU Library    10  * General Public License, version 2.    11  * %End-Header%    12  */    13     14 /*    15  * History:    16  * 93/10/30	- Creation    17  */    18     19 #include "config.h"    20 #if HAVE_ERRNO_H    21 #include <errno.h>    22 #endif    23 #if HAVE_SYS_IOCTL_H    24 #include <sys/ioctl.h>    25 #endif    26     27 #include "e2p.h"    28     29 int setversion (int fd, unsigned long version)    30 {    31 #if HAVE_EXT2_IOCTLS    32 	int ver;    33     34 	ver = (int) version;    35 	return ioctl (fd, EXT2_IOC_SETVERSION, &ver);    36 #else /* ! HAVE_EXT2_IOCTLS */    37 	extern int errno;    38 	errno = EOPNOTSUPP;    39 	return -1;    40 #endif /* ! HAVE_EXT2_IOCTLS */    41 }