Changeset ec2328ee in rtems
- Timestamp:
- 03/31/99 23:24:57 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- c08f283
- Parents:
- 8cc57f6
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libcsupport/src/mknod.c
r8cc57f6 rec2328ee 23 23 #include <errno.h> 24 24 #include <stdlib.h> 25 #include <assert.h>26 25 27 26 #include "libio_.h" -
c/src/exec/libfs/src/imfs/imfs_getchild.c
r8cc57f6 rec2328ee 32 32 33 33 /* 34 * Check for fatal errors 34 * Check for fatal errors. A NULL directory show a problem in the 35 * the IMFS code. 35 36 */ 36 37 -
c/src/exec/libfs/src/imfs/imfs_mknod.c
r8cc57f6 rec2328ee 21 21 #include <errno.h> 22 22 #include <stdlib.h> 23 #include <assert.h>24 23 25 24 #include "imfs.h" … … 53 52 rtems_filesystem_split_dev_t( dev, info.device.major, info.device.minor ); 54 53 } else { 55 assert( 0 );56 54 set_errno_and_return_minus_one( EINVAL ); 57 55 } -
c/src/lib/libc/imfs_getchild.c
r8cc57f6 rec2328ee 32 32 33 33 /* 34 * Check for fatal errors 34 * Check for fatal errors. A NULL directory show a problem in the 35 * the IMFS code. 35 36 */ 36 37 -
c/src/lib/libc/imfs_mknod.c
r8cc57f6 rec2328ee 21 21 #include <errno.h> 22 22 #include <stdlib.h> 23 #include <assert.h>24 23 25 24 #include "imfs.h" … … 53 52 rtems_filesystem_split_dev_t( dev, info.device.major, info.device.minor ); 54 53 } else { 55 assert( 0 );56 54 set_errno_and_return_minus_one( EINVAL ); 57 55 } -
c/src/lib/libc/mknod.c
r8cc57f6 rec2328ee 23 23 #include <errno.h> 24 24 #include <stdlib.h> 25 #include <assert.h>26 25 27 26 #include "libio_.h" -
c/src/libfs/src/imfs/imfs_getchild.c
r8cc57f6 rec2328ee 32 32 33 33 /* 34 * Check for fatal errors 34 * Check for fatal errors. A NULL directory show a problem in the 35 * the IMFS code. 35 36 */ 36 37 -
c/src/libfs/src/imfs/imfs_mknod.c
r8cc57f6 rec2328ee 21 21 #include <errno.h> 22 22 #include <stdlib.h> 23 #include <assert.h>24 23 25 24 #include "imfs.h" … … 53 52 rtems_filesystem_split_dev_t( dev, info.device.major, info.device.minor ); 54 53 } else { 55 assert( 0 );56 54 set_errno_and_return_minus_one( EINVAL ); 57 55 } -
cpukit/libcsupport/src/mknod.c
r8cc57f6 rec2328ee 23 23 #include <errno.h> 24 24 #include <stdlib.h> 25 #include <assert.h>26 25 27 26 #include "libio_.h" -
cpukit/libfs/src/imfs/imfs_getchild.c
r8cc57f6 rec2328ee 32 32 33 33 /* 34 * Check for fatal errors 34 * Check for fatal errors. A NULL directory show a problem in the 35 * the IMFS code. 35 36 */ 36 37 -
cpukit/libfs/src/imfs/imfs_mknod.c
r8cc57f6 rec2328ee 21 21 #include <errno.h> 22 22 #include <stdlib.h> 23 #include <assert.h>24 23 25 24 #include "imfs.h" … … 53 52 rtems_filesystem_split_dev_t( dev, info.device.major, info.device.minor ); 54 53 } else { 55 assert( 0 );56 54 set_errno_and_return_minus_one( EINVAL ); 57 55 }
Note: See TracChangeset
for help on using the changeset viewer.