Changeset 26fa82bc in mainline for uspace/lib/drv/generic/driver.c


Ignore:
Timestamp:
2011-04-09T09:34:45Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
17279ead
Parents:
3ad7b1c
Message:

Let drivers return task value as soon as they start, returning control
to the command line when started manually.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/drv/generic/driver.c

    r3ad7b1c r26fa82bc  
    683683        }
    684684       
     685        /* Return success from the task since server has started. */
     686        rc = task_retval(0);
     687        if (rc != EOK)
     688                return 1;
     689
    685690        async_manager();
    686691       
Note: See TracChangeset for help on using the changeset viewer.