Ignore:
Timestamp:
May 26, 2003, 4:43:12 PM (22 years ago)
Author:
zap
Message:

See ChangeLog.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/emx/umalloc.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r235 r236  
    598598/* Each thread has its own default heap. */
    599599
    600 #if defined (__MT__)
    601600#define _UM_DEFAULT_REGULAR_HEAP tp->_th_rheap
    602601#define _UM_DEFAULT_TILED_HEAP   tp->_th_theap
    603602#define _UM_MT_DECL              struct _thread *tp = _thread ();
    604 #else
    605 #define _UM_DEFAULT_REGULAR_HEAP _um_regular_heap
    606 #define _UM_DEFAULT_TILED_HEAP   _um_tiled_heap
    607 #define _UM_MT_DECL
    608 #endif
    609603
    610604/* Note that _um_regular_heap is declared in <umalloc.h>.
     
    735729static __inline__ void _um_heap_lock (Heap_t h)
    736730{
    737 #if defined (__MT__)
    738731  _rmutex_checked_request (&h->rsem, _FMR_IGNINT);
    739 #endif
    740732}
    741733
     
    743735static __inline__ void _um_heap_unlock (Heap_t h)
    744736{
    745 #if defined (__MT__)
    746737  _rmutex_checked_release (&h->rsem);
    747 #endif
    748738}
    749739
Note: See TracChangeset for help on using the changeset viewer.