Changeset 3c462734 in rtems


Ignore:
Timestamp:
05/14/12 10:13:04 (12 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
4.11, 5, master
Children:
a1c6b96a
Parents:
fce1169
git-author:
Sebastian Huber <sebastian.huber@…> (05/14/12 10:13:04)
git-committer:
Sebastian Huber <sebastian.huber@…> (05/14/12 14:57:59)
Message:

libblock: Fix purge device tree traversal

Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • cpukit/libblock/src/bdbuf.c

    rfce1169 r3c462734  
    28542854    else
    28552855    {
    2856       while (*prev != NULL && cur == (*prev)->avl.right)
     2856      while (*prev != NULL
     2857             && (cur == (*prev)->avl.right || (*prev)->avl.right == NULL))
    28572858      {
    28582859        /* Up */
  • testsuites/libtests/Makefile.am

    rfce1169 r3c462734  
    1212    termios06 termios07 termios08 \
    1313    rtems++ tztest block01 block02 block03 block04 block05 block06 block07 \
    14     block08 block09 block10 block11 stringto01 \
     14    block08 block09 block10 block11 block12 stringto01 \
    1515    tar01 tar02 tar03 \
    1616    math mathf mathl complex \
  • testsuites/libtests/configure.ac

    rfce1169 r3c462734  
    5656block10/Makefile
    5757block11/Makefile
     58block12/Makefile
    5859bspcmdline01/Makefile
    5960cpuuse/Makefile
Note: See TracChangeset for help on using the changeset viewer.