Changeset 32ba727 in rtems
- Timestamp:
- 01/22/01 13:46:28 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 7a55888
- Parents:
- c2a4084f
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/ChangeLog
rc2a4084f r32ba727 1 2001-01-22 Michael Hamel <mhamel@adi.co.nz> 2 3 * include/rtems/posix/semaphore.h, inline/rtems/posix/semaphore.inl, 4 src/ptimer1.c, include/rtems/posix/semaphore.h, 5 inline/rtems/posix/semaphore.inl, src/alarm.c, src/ptimer1.c, 6 src/semaphorenametoid.c, src/semopen.c, src/semunlink.c: 7 Modifications to make CodeWarrior happy. 8 1 9 2001-01-12 Joel Sherrill <joel@OARcorp.com> 2 10 -
c/src/exec/posix/include/rtems/posix/semaphore.h
rc2a4084f r32ba727 97 97 98 98 RTEMS_INLINE_ROUTINE POSIX_Semaphore_Control *_POSIX_Semaphore_Get ( 99 Objects_Id*id,99 sem_t *id, 100 100 Objects_Locations *location 101 101 ); … … 165 165 int _POSIX_Semaphore_Name_to_id( 166 166 const char *name, 167 Objects_Id*id167 sem_t *id 168 168 ); 169 169 -
c/src/exec/posix/inline/rtems/posix/semaphore.inl
rc2a4084f r32ba727 61 61 62 62 RTEMS_INLINE_ROUTINE POSIX_Semaphore_Control *_POSIX_Semaphore_Get ( 63 Objects_Id*id,63 sem_t *id, 64 64 Objects_Locations *location 65 65 ) -
c/src/exec/posix/src/alarm.c
rc2a4084f r32ba727 14 14 15 15 #include <pthread.h> 16 #include <errno.h>16 //#include <errno.h> 17 17 18 18 #include <rtems/system.h> -
c/src/exec/posix/src/ptimer1.c
rc2a4084f r32ba727 544 544 break; 545 545 546 default: 546 default: break; 547 547 548 548 … … 625 625 break; 626 626 627 default: 627 default: break; 628 628 } 629 629 630 630 break; 631 631 632 default: 632 default: break; 633 633 634 634 /* It does nothing, although it will be probably necessary to -
c/src/exec/posix/src/semaphorenametoid.c
rc2a4084f r32ba727 27 27 int _POSIX_Semaphore_Name_to_id( 28 28 const char *name, 29 Objects_Id*id29 sem_t *id 30 30 ) 31 31 { … … 39 39 40 40 status = _Objects_Name_to_id( 41 &_POSIX_Semaphore_Information, (char *)name, 0, id );41 &_POSIX_Semaphore_Information, (char *)name, 0, (Objects_Id*)id ); 42 42 43 43 if ( status == OBJECTS_SUCCESSFUL ) -
c/src/exec/posix/src/semopen.c
rc2a4084f r32ba727 42 42 unsigned int value = 0; 43 43 int status; 44 Objects_Idthe_semaphore_id;44 sem_t the_semaphore_id; 45 45 POSIX_Semaphore_Control *the_semaphore; 46 46 Objects_Locations location; -
c/src/exec/posix/src/semunlink.c
rc2a4084f r32ba727 33 33 int status; 34 34 register POSIX_Semaphore_Control *the_semaphore; 35 Objects_Idthe_semaphore_id;35 sem_t the_semaphore_id; 36 36 37 37 _Thread_Disable_dispatch(); -
cpukit/posix/ChangeLog
rc2a4084f r32ba727 1 2001-01-22 Michael Hamel <mhamel@adi.co.nz> 2 3 * include/rtems/posix/semaphore.h, inline/rtems/posix/semaphore.inl, 4 src/ptimer1.c, include/rtems/posix/semaphore.h, 5 inline/rtems/posix/semaphore.inl, src/alarm.c, src/ptimer1.c, 6 src/semaphorenametoid.c, src/semopen.c, src/semunlink.c: 7 Modifications to make CodeWarrior happy. 8 1 9 2001-01-12 Joel Sherrill <joel@OARcorp.com> 2 10 -
cpukit/posix/include/rtems/posix/semaphore.h
rc2a4084f r32ba727 97 97 98 98 RTEMS_INLINE_ROUTINE POSIX_Semaphore_Control *_POSIX_Semaphore_Get ( 99 Objects_Id*id,99 sem_t *id, 100 100 Objects_Locations *location 101 101 ); … … 165 165 int _POSIX_Semaphore_Name_to_id( 166 166 const char *name, 167 Objects_Id*id167 sem_t *id 168 168 ); 169 169 -
cpukit/posix/inline/rtems/posix/semaphore.inl
rc2a4084f r32ba727 61 61 62 62 RTEMS_INLINE_ROUTINE POSIX_Semaphore_Control *_POSIX_Semaphore_Get ( 63 Objects_Id*id,63 sem_t *id, 64 64 Objects_Locations *location 65 65 ) -
cpukit/posix/src/alarm.c
rc2a4084f r32ba727 14 14 15 15 #include <pthread.h> 16 #include <errno.h>16 //#include <errno.h> 17 17 18 18 #include <rtems/system.h> -
cpukit/posix/src/ptimer1.c
rc2a4084f r32ba727 544 544 break; 545 545 546 default: 546 default: break; 547 547 548 548 … … 625 625 break; 626 626 627 default: 627 default: break; 628 628 } 629 629 630 630 break; 631 631 632 default: 632 default: break; 633 633 634 634 /* It does nothing, although it will be probably necessary to -
cpukit/posix/src/semaphorenametoid.c
rc2a4084f r32ba727 27 27 int _POSIX_Semaphore_Name_to_id( 28 28 const char *name, 29 Objects_Id*id29 sem_t *id 30 30 ) 31 31 { … … 39 39 40 40 status = _Objects_Name_to_id( 41 &_POSIX_Semaphore_Information, (char *)name, 0, id );41 &_POSIX_Semaphore_Information, (char *)name, 0, (Objects_Id*)id ); 42 42 43 43 if ( status == OBJECTS_SUCCESSFUL ) -
cpukit/posix/src/semopen.c
rc2a4084f r32ba727 42 42 unsigned int value = 0; 43 43 int status; 44 Objects_Idthe_semaphore_id;44 sem_t the_semaphore_id; 45 45 POSIX_Semaphore_Control *the_semaphore; 46 46 Objects_Locations location; -
cpukit/posix/src/semunlink.c
rc2a4084f r32ba727 33 33 int status; 34 34 register POSIX_Semaphore_Control *the_semaphore; 35 Objects_Idthe_semaphore_id;35 sem_t the_semaphore_id; 36 36 37 37 _Thread_Disable_dispatch();
Note: See TracChangeset
for help on using the changeset viewer.