Changeset 45ada30 in rtems
- Timestamp:
- 05/24/12 16:07:24 (11 years ago)
- Children:
- 246e23c
- Parents:
- a61fc251 (diff), 4acbff6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 93 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
ra61fc251 r45ada30 2 2 autom4te.cache 3 3 configure 4 config.h.in5 4 Makefile.in -
cpukit/libblock/src/bdbuf.c
ra61fc251 r45ada30 297 297 { 298 298 const char* states[] = 299 { "FR", "EM", "CH", "AC", "AM", " MD", "SY", "TR" };299 { "FR", "EM", "CH", "AC", "AM", "AE", "AP", "MD", "SY", "TR", "TP" }; 300 300 301 301 printf ("bdbuf:users: %15s: [%" PRIu32 " (%s)] %td:%td = %" PRIu32 " %s\n", … … 1849 1849 rtems_blkdev_bnum media_block_end = dd->start + dd->size; 1850 1850 rtems_blkdev_bnum media_block_count = dd->block_to_media_block_shift >= 0 ? 1851 dd->block_size >>dd->block_to_media_block_shift1851 1U << dd->block_to_media_block_shift 1852 1852 : dd->block_size / dd->media_block_size; 1853 1853 uint32_t block_size = dd->block_size; -
cpukit/libmisc/shell/main_lsof.c
ra61fc251 r45ada30 16 16 #include "config.h" 17 17 #endif 18 19 #include <stdio.h> 18 20 19 21 #include <rtems/libio_.h> … … 36 38 rtems_chain_node *mt_entry_node = NULL; 37 39 38 printk( 40 fprintf( 41 stdout, 39 42 "%c %c %s %s -> %s root 0x%08x -> 0x%08x\n", 40 43 mt_entry->mounted ? 'M' : 'U', … … 55 58 (rtems_filesystem_location_info_t *) mt_entry_node; 56 59 57 printk( 60 fprintf( 61 stdout, 58 62 "\t0x%08x -> 0x%08x\n", 59 63 loc,
Note: See TracChangeset
for help on using the changeset viewer.