Changeset eaf34f7 in mainline for libc/generic/async.c
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified 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;
Note:
See TracChangeset
for help on using the changeset viewer.