Changeset eaf34f7 in mainline for libc/generic/async.c


Ignore:
Timestamp:
2006-05-30T18:01:51Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1029d3d3
Parents:
44c6d88d
Message:

Modified console to use new async framework.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified libc/generic/async.c

    r44c6d88d reaf34f7  
    270270}
    271271
    272 /** Function that gets created on interrupt receival
     272/** Function that gets called on interrupt receival
    273273 *
    274274 * This function is defined as a weak symbol - to be redefined in
     
    343343        conn->ptid = psthread_create(connection_thread, conn);
    344344        conn->callid = callid;
    345         conn->call = *call;
     345        if (call)
     346                conn->call = *call;
    346347        conn->active = 1; /* We will activate it asap */
    347348        conn->cthread = cthread;
Note: See TracChangeset for help on using the changeset viewer.