Changeset 236 for trunk/src/emx/include/emx/umalloc.h
- Timestamp:
- May 26, 2003, 4:43:12 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/emx/umalloc.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r235 r236 598 598 /* Each thread has its own default heap. */ 599 599 600 #if defined (__MT__)601 600 #define _UM_DEFAULT_REGULAR_HEAP tp->_th_rheap 602 601 #define _UM_DEFAULT_TILED_HEAP tp->_th_theap 603 602 #define _UM_MT_DECL struct _thread *tp = _thread (); 604 #else605 #define _UM_DEFAULT_REGULAR_HEAP _um_regular_heap606 #define _UM_DEFAULT_TILED_HEAP _um_tiled_heap607 #define _UM_MT_DECL608 #endif609 603 610 604 /* Note that _um_regular_heap is declared in <umalloc.h>. … … 735 729 static __inline__ void _um_heap_lock (Heap_t h) 736 730 { 737 #if defined (__MT__)738 731 _rmutex_checked_request (&h->rsem, _FMR_IGNINT); 739 #endif740 732 } 741 733 … … 743 735 static __inline__ void _um_heap_unlock (Heap_t h) 744 736 { 745 #if defined (__MT__)746 737 _rmutex_checked_release (&h->rsem); 747 #endif748 738 } 749 739 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.