Changeset b95e303f in rtems
- Timestamp:
- 11/02/99 17:14:40 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8a5f2ca
- Parents:
- 4dc89814
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/src/semaphore.c
r4dc89814 rb95e303f 252 252 va_list arg; 253 253 mode_t mode; 254 unsigned int value ;254 unsigned int value = 0; 255 255 int status; 256 256 Objects_Id the_semaphore_id; … … 619 619 Objects_Name_to_id_errors status; 620 620 621 status = _Objects_Name_to_id( &_POSIX_Semaphore_Information, name, 0, id );621 status = _Objects_Name_to_id( &_POSIX_Semaphore_Information, (char *)name, 0, id ); 622 622 623 623 if ( status == OBJECTS_SUCCESSFUL ) { -
cpukit/posix/src/semaphore.c
r4dc89814 rb95e303f 252 252 va_list arg; 253 253 mode_t mode; 254 unsigned int value ;254 unsigned int value = 0; 255 255 int status; 256 256 Objects_Id the_semaphore_id; … … 619 619 Objects_Name_to_id_errors status; 620 620 621 status = _Objects_Name_to_id( &_POSIX_Semaphore_Information, name, 0, id );621 status = _Objects_Name_to_id( &_POSIX_Semaphore_Information, (char *)name, 0, id ); 622 622 623 623 if ( status == OBJECTS_SUCCESSFUL ) {
Note: See TracChangeset
for help on using the changeset viewer.