L4Re/departure

libext2fs/lib/libe2p/pe.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  * pe.c			- Print a second extended filesystem errors behavior     3  *     4  * Copyright (C) 1992, 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  * 94/01/09	- Creation    17  */    18     19 #include "config.h"    20 #include <stdio.h>    21     22 #include "e2p.h"    23     24 void print_fs_errors (FILE * f, unsigned short errors)    25 {    26 	switch (errors)    27 	{    28 		case EXT2_ERRORS_CONTINUE:    29 			fprintf (f, "Continue");    30 			break;    31 		case EXT2_ERRORS_RO:    32 			fprintf (f, "Remount read-only");    33 			break;    34 		case EXT2_ERRORS_PANIC:    35 			fprintf (f, "Panic");    36 			break;    37 		default:    38 			fprintf (f, "Unknown (continue)");    39 	}    40 }