Changeset f54bc05 in rtems


Ignore:
Timestamp:
09/01/05 13:27:02 (19 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Children:
45a32542
Parents:
fd06f6c
Message:

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

PR 804

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

Legend:

Unmodified
Added
Removed
  • cpukit/sapi/ChangeLog

    rfd06f6c rf54bc05  
     12005-09-01      Nuno Costa <nuno-costa@iol.pt>
     2
     3        PR 804
     4        * include/confdefs.h: Memory for POSIX timers not accounted for. Patch
     5        adapted from edit comment in PR filed.
     6
    172005-06-09      Jacques Seronie Vivien <jacques.seronievivien@astrium.eads.net>
    28
  • cpukit/sapi/include/confdefs.h

    rfd06f6c rf54bc05  
    481481#include <rtems/posix/semaphore.h>
    482482#include <rtems/posix/threadsup.h>
     483#include <rtems/posix/timer.h>
    483484
    484485#ifndef CONFIGURE_MAXIMUM_POSIX_THREADS
     
    575576
    576577#define CONFIGURE_MEMORY_FOR_POSIX_TIMERS(_timers) \
    577   ((_timers) * \
    578    ( 0 ) )
     578   ((_timers) * (sizeof(POSIX_Timer_Control) + CONFIGURE_OBJECT_TABLE_STUFF))
    579579
    580580#define CONFIGURE_MEMORY_FOR_POSIX_QUEUED_SIGNALS(_queued_signals) \
     
    602602    CONFIGURE_MEMORY_FOR_POSIX_SEMAPHORES( \
    603603        CONFIGURE_MAXIMUM_POSIX_SEMAPHORES ) + \
     604    CONFIGURE_MEMORY_FOR_POSIX_TIMERS( CONFIGURE_MAXIMUM_POSIX_TIMERS ) + \
    604605    (CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE) \
    605606   )
Note: See TracChangeset for help on using the changeset viewer.