- Timestamp:
- 2006-05-30T18:01:51Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1029d3d3
- Parents:
- 44c6d88d
- Location:
- libc/generic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/generic/async.c
r44c6d88d reaf34f7 270 270 } 271 271 272 /** Function that gets c reated on interrupt receival272 /** Function that gets called on interrupt receival 273 273 * 274 274 * This function is defined as a weak symbol - to be redefined in … … 343 343 conn->ptid = psthread_create(connection_thread, conn); 344 344 conn->callid = callid; 345 conn->call = *call; 345 if (call) 346 conn->call = *call; 346 347 conn->active = 1; /* We will activate it asap */ 347 348 conn->cthread = cthread; -
libc/generic/time.c
r44c6d88d reaf34f7 98 98 } 99 99 100 /** Wait unconditionally for specified mi liseconds */100 /** Wait unconditionally for specified microseconds */ 101 101 void usleep(unsigned long usec) 102 102 {
Note:
See TracChangeset
for help on using the changeset viewer.
