Changeset 12f91130 in mainline for uspace/lib/libc/generic/async.c


Ignore:
Timestamp:
2007-06-28T15:49:21Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9591265
Parents:
bc1f1c2
Message:

Remove fibril_join().
We cannot guarantee our assumptions that easily.
This broken feature is removed instead of fixing because there are now users of it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/generic/async.c

    rbc1f1c2 r12f91130  
    5252 *
    5353 * 1) Multithreaded client application
    54  *  create_thread(thread1);
    55  *  create_thread(thread2);
     54 *  fibril_create(fibril1);
     55 *  fibril_create(fibril2);
    5656 *  ...
    5757 * 
    58  *  thread1() {
     58 *  fibril1() {
    5959 *        conn = ipc_connect_me_to();
    6060 *        c1 = send(conn);
Note: See TracChangeset for help on using the changeset viewer.