Changeset 71c012af in rtems
- Timestamp:
- 07/04/10 14:53:47 (13 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 9cdd944
- Parents:
- b637dbb
- Location:
- cpukit
- Files:
-
- 27 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
rb637dbb r71c012af 1 2010-07-04 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 * libblock/include/rtems/ide_part_table.h, libblock/src/bdbuf.c, 4 libcsupport/src/__times.c, libcsupport/src/libio_init.c, 5 libcsupport/src/mallocfreespace.c, libcsupport/src/mount-mgr.c, 6 libcsupport/src/mount.c, libcsupport/src/rewinddir.c, 7 libcsupport/src/seekdir.c, libcsupport/src/telldir.c, 8 libcsupport/src/unmount.c, libfs/src/dosfs/fat.c, 9 libfs/src/dosfs/fat_fat_operations.c, libfs/src/dosfs/msdos_create.c, 10 libfs/src/dosfs/msdos_dir.c, libfs/src/dosfs/msdos_eval.c, 11 libfs/src/dosfs/msdos_file.c, libfs/src/dosfs/msdos_format.c, 12 libfs/src/dosfs/msdos_fsunmount.c, libfs/src/dosfs/msdos_initsupp.c, 13 libfs/src/dosfs/msdos_rename.c, libmisc/cpuuse/cpuusagereport.c, 14 libmisc/shell/vis.c, libmisc/stackchk/check.c, sapi/src/posixapi.c, 15 telnetd/telnetd.c: Remove include of assert.h when it is not needed. 16 1 17 2010-07-03 Joel Sherrill <joel.sherrill@oarcorp.com> 2 18 -
cpukit/libblock/include/rtems/ide_part_table.h
rb637dbb r71c012af 22 22 #define _RTEMS_IDE_PART_TABLE_H 23 23 24 #include <assert.h>25 24 #include <rtems/chain.h> 26 25 #include <stdio.h> -
cpukit/libblock/src/bdbuf.c
rb637dbb r71c012af 35 35 #include <limits.h> 36 36 #include <errno.h> 37 #include <assert.h>38 37 #include <stdio.h> 39 38 #include <string.h> -
cpukit/libcsupport/src/__times.c
rb637dbb r71c012af 2 2 * times() - POSIX 1003.1b 4.5.2 - Get Process Times 3 3 * 4 * COPYRIGHT (c) 1989-20 09.4 * COPYRIGHT (c) 1989-2010. 5 5 * On-Line Applications Research Corporation (OAR). 6 6 * … … 22 22 #include <sys/time.h> 23 23 #include <errno.h> 24 #include <assert.h>25 24 #include <rtems/seterr.h> 26 25 #ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__ -
cpukit/libcsupport/src/libio_init.c
rb637dbb r71c012af 4 4 * POSIX system calls like open(), read, fstat(), etc. 5 5 * 6 * COPYRIGHT (c) 1989- 1999.6 * COPYRIGHT (c) 1989-2010. 7 7 * On-Line Applications Research Corporation (OAR). 8 8 * … … 24 24 #include <stdio.h> /* O_RDONLY, et.al. */ 25 25 #include <fcntl.h> /* O_RDONLY, et.al. */ 26 #include <assert.h>27 26 #include <errno.h> 28 27 -
cpukit/libcsupport/src/mallocfreespace.c
rb637dbb r71c012af 3 3 * 4 4 * 5 * COPYRIGHT (c) 1989-20 07.5 * COPYRIGHT (c) 1989-2010. 6 6 * On-Line Applications Research Corporation (OAR). 7 7 * … … 25 25 #include <stdlib.h> 26 26 #include <sys/types.h> 27 #include <assert.h>28 27 #include <errno.h> 29 28 #include <string.h> -
cpukit/libcsupport/src/mount-mgr.c
rb637dbb r71c012af 29 29 #include <stdlib.h> 30 30 #include <string.h> 31 #include <assert.h>32 31 33 32 #include <rtems/libio_.h> -
cpukit/libcsupport/src/mount.c
rb637dbb r71c012af 8 8 * XXX unmount should be required. 9 9 * 10 * COPYRIGHT (c) 1989- 1999.10 * COPYRIGHT (c) 1989-2010. 11 11 * On-Line Applications Research Corporation (OAR). 12 12 * … … 33 33 #include <stdlib.h> 34 34 #include <string.h> 35 #include <assert.h>36 35 37 36 #include <rtems/libio_.h> -
cpukit/libcsupport/src/rewinddir.c
rb637dbb r71c012af 2 2 * rewinddir() - POSIX 1003.1b - XXX 3 3 * 4 * COPYRIGHT (c) 1989- 1999.4 * COPYRIGHT (c) 1989-2010. 5 5 * On-Line Applications Research Corporation (OAR). 6 6 * … … 18 18 19 19 #include <sys/types.h> 20 #include <assert.h>21 20 #include <dirent.h> 22 21 #include <stdio.h> -
cpukit/libcsupport/src/seekdir.c
rb637dbb r71c012af 2 2 * seekdir() - POSIX 1003.1b - XXX 3 3 * 4 * COPYRIGHT (c) 1989- 1999.4 * COPYRIGHT (c) 1989-2010. 5 5 * On-Line Applications Research Corporation (OAR). 6 6 * … … 18 18 19 19 #include <sys/param.h> 20 #include <assert.h>21 20 #include <dirent.h> 22 21 #include <stdio.h> -
cpukit/libcsupport/src/telldir.c
rb637dbb r71c012af 2 2 * telldir() - XXX 3 3 * 4 * COPYRIGHT (c) 1989- 1999.4 * COPYRIGHT (c) 1989-2010. 5 5 * On-Line Applications Research Corporation (OAR). 6 6 * … … 18 18 19 19 #include <sys/param.h> 20 #include <assert.h>21 20 #include <dirent.h> 22 21 #include <stdlib.h> … … 42 41 43 42 iop = rtems_libio_iop( dirp->dd_fd ); 44 45 if (iop == NULL) 46 assert(0); 43 if ( !iop ) 44 rtems_set_errno_and_return_minus_one( EBADF ); 47 45 48 46 return (long)( iop->offset ); -
cpukit/libcsupport/src/unmount.c
rb637dbb r71c012af 7 7 * into the file system name space. 8 8 * 9 * COPYRIGHT (c) 1989- 1999.9 * COPYRIGHT (c) 1989-2010. 10 10 * On-Line Applications Research Corporation (OAR). 11 11 * … … 28 28 #include <stdlib.h> 29 29 #include <string.h> 30 #include <assert.h>31 30 32 31 #include <rtems/libio_.h> -
cpukit/libfs/src/dosfs/fat.c
rb637dbb r71c012af 20 20 #include <errno.h> 21 21 #include <stdlib.h> 22 #include <assert.h>23 22 24 23 #include <rtems/libio_.h> -
cpukit/libfs/src/dosfs/fat_fat_operations.c
rb637dbb r71c012af 20 20 #include <errno.h> 21 21 #include <stdlib.h> 22 #include <assert.h>23 22 24 23 #include <rtems/libio_.h> -
cpukit/libfs/src/dosfs/msdos_create.c
rb637dbb r71c012af 17 17 18 18 #include <errno.h> 19 #include <assert.h>20 19 #include <stdio.h> 21 20 #include <stdlib.h> -
cpukit/libfs/src/dosfs/msdos_dir.c
rb637dbb r71c012af 18 18 #include <stdlib.h> 19 19 #include <unistd.h> 20 #include <assert.h>21 20 #include <errno.h> 22 21 #include <rtems/libio_.h> -
cpukit/libfs/src/dosfs/msdos_eval.c
rb637dbb r71c012af 22 22 #include <errno.h> 23 23 #include <stdlib.h> 24 #include <assert.h>25 24 26 25 #include <rtems/libio_.h> -
cpukit/libfs/src/dosfs/msdos_file.c
rb637dbb r71c012af 16 16 17 17 #include <stdlib.h> 18 #include <assert.h>19 18 #include <errno.h> 20 19 -
cpukit/libfs/src/dosfs/msdos_format.c
rb637dbb r71c012af 34 34 #include <stdio.h> 35 35 #include <ctype.h> 36 #include <assert.h>37 36 38 37 #include <rtems/libio_.h> -
cpukit/libfs/src/dosfs/msdos_fsunmount.c
rb637dbb r71c012af 22 22 #include <stdio.h> 23 23 24 #include <assert.h>25 24 #include <rtems.h> 26 25 #include <rtems/libio_.h> -
cpukit/libfs/src/dosfs/msdos_initsupp.c
rb637dbb r71c012af 22 22 #include <stdio.h> 23 23 24 #include <assert.h>25 24 #include <rtems.h> 26 25 #include <rtems/libio_.h> -
cpukit/libfs/src/dosfs/msdos_rename.c
rb637dbb r71c012af 16 16 17 17 #include <errno.h> 18 #include <assert.h>19 18 #include <stdio.h> 20 19 #include <stdlib.h> -
cpukit/libmisc/cpuuse/cpuusagereport.c
rb637dbb r71c012af 18 18 #include <rtems.h> 19 19 20 #include <assert.h>21 20 #include <string.h> 22 21 #include <stdlib.h> -
cpukit/libmisc/shell/vis.c
rb637dbb r71c012af 78 78 #include <sys/types.h> 79 79 80 #include <assert.h>81 80 #include <vis.h> 82 81 #include <stdlib.h> -
cpukit/libmisc/stackchk/check.c
rb637dbb r71c012af 34 34 #define DONT_USE_FATAL_EXTENSION 35 35 36 #include <assert.h>37 36 #include <string.h> 38 37 #include <stdlib.h> -
cpukit/sapi/src/posixapi.c
rb637dbb r71c012af 4 4 * NOTE: 5 5 * 6 * COPYRIGHT (c) 1989-20 08.6 * COPYRIGHT (c) 1989-2010. 7 7 * On-Line Applications Research Corporation (OAR). 8 8 * … … 17 17 #include "config.h" 18 18 #endif 19 20 #include <assert.h>21 19 22 20 /* -
cpukit/telnetd/telnetd.c
rb637dbb r71c012af 55 55 #include <stdlib.h> 56 56 #include <stdio.h> 57 #include <assert.h>58 57 #include <string.h> 59 58 #include <syslog.h>
Note: See TracChangeset
for help on using the changeset viewer.