Changeset 1affcdf3 in mainline for uspace/srv/bd/rd/rd.c


Ignore:
Timestamp:
2011-06-10T19:33:41Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1878386
Parents:
13ecdac9 (diff), 79a141a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/bd/rd/rd.c

    r13ecdac9 r1affcdf3  
    123123        while (true) {
    124124                callid = async_get_call(&call);
    125                 switch (IPC_GET_IMETHOD(call)) {
    126                 case IPC_M_PHONE_HUNGUP:
     125               
     126                if (!IPC_GET_IMETHOD(call)) {
    127127                        /*
    128128                         * The other side has hung up.
    129                          * Answer the message and exit the fibril.
     129                         * Exit the fibril.
    130130                         */
    131131                        async_answer_0(callid, EOK);
    132132                        return;
     133                }
     134               
     135                switch (IPC_GET_IMETHOD(call)) {
    133136                case BD_READ_BLOCKS:
    134137                        ba = MERGE_LOUP32(IPC_GET_ARG1(call),
     
    243246                return false;
    244247        }
    245 
     248       
    246249        fibril_rwlock_initialize(&rd_lock);
    247250       
     
    258261        printf("%s: Accepting connections\n", NAME);
    259262        async_manager();
    260 
     263       
    261264        /* Never reached */
    262265        return 0;
Note: See TracChangeset for help on using the changeset viewer.