Changeset d9e11ff2 in mainline for generic/src/ipc/ipc.c


Ignore:
Timestamp:
2006-03-14T14:31:28Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8b1439e
Parents:
5581c45e
Message:

Small speed update of ipc.
Fixed some bugs regarding pages in mremap.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/ipc/ipc.c

    r5581c45e rd9e11ff2  
    191191                } else {
    192192                        if (!(flags & IPC_WAIT_NONBLOCKING)) {
     193                                /* Wait for event to appear */
    193194                                condvar_wait(&box->cv, &box->mutex);
    194195                                continue;
    195196                        }
    196                         if (condvar_trywait(&box->cv, &box->mutex) != ESYNCH_WOULD_BLOCK)
    197                                 continue;
    198197                        request = NULL;
    199198                }
Note: See TracChangeset for help on using the changeset viewer.