Changeset 8c51e48c in rtems


Ignore:
Timestamp:
09/01/05 13:28:00 (19 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
04ae040
Parents:
2dc0cb2e
Message:

2005-09-01 Nuno Costa <nuno-costa@…>

PR 804

  • sapi/include/confdefs.h: Memory for POSIX timers not accounted for. Patch adapted from edit comment in PR filed.
Location:
cpukit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    r2dc0cb2e r8c51e48c  
     12005-09-01      Nuno Costa <nuno-costa@iol.pt>
     2
     3        PR 804
     4        * sapi/include/confdefs.h: Memory for POSIX timers not accounted for.
     5        Patch adapted from edit comment in PR filed.
     6
    172005-08-31  Ralf Corsepius  <ralf.corsepius@rtems.org>
    28
  • cpukit/sapi/include/confdefs.h

    r2dc0cb2e r8c51e48c  
    486486#include <rtems/posix/semaphore.h>
    487487#include <rtems/posix/threadsup.h>
     488#include <rtems/posix/timer.h>
    488489
    489490#ifndef CONFIGURE_MAXIMUM_POSIX_THREADS
     
    581582
    582583#define CONFIGURE_MEMORY_FOR_POSIX_TIMERS(_timers) \
    583   ((_timers) * \
    584    ( 0 ) )
     584   ((_timers) * (sizeof(POSIX_Timer_Control) + CONFIGURE_OBJECT_TABLE_STUFF))
    585585
    586586#define CONFIGURE_MEMORY_FOR_POSIX_QUEUED_SIGNALS(_queued_signals) \
     
    611611    CONFIGURE_MEMORY_FOR_POSIX_SEMAPHORES( \
    612612        CONFIGURE_MAXIMUM_POSIX_SEMAPHORES ) + \
     613    CONFIGURE_MEMORY_FOR_POSIX_TIMERS( CONFIGURE_MAXIMUM_POSIX_TIMERS ) + \
    613614    (CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE) \
    614615   )
Note: See TracChangeset for help on using the changeset viewer.