Changeset 1affcdf3 in mainline for uspace/srv/clip/clip.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/clip/clip.c

    r13ecdac9 r1affcdf3  
    3030#include <bool.h>
    3131#include <async.h>
    32 #include <ipc/ns.h>
     32#include <ns.h>
    3333#include <ipc/services.h>
    3434#include <ipc/clipboard.h>
     
    153153        async_answer_0(iid, EOK);
    154154       
    155         bool cont = true;
    156         while (cont) {
     155        while (true) {
    157156                ipc_call_t call;
    158157                ipc_callid_t callid = async_get_call(&call);
    159158               
     159                if (!IPC_GET_IMETHOD(call))
     160                        break;
     161               
    160162                switch (IPC_GET_IMETHOD(call)) {
    161                 case IPC_M_PHONE_HUNGUP:
    162                         cont = false;
    163                         continue;
    164163                case CLIPBOARD_PUT_DATA:
    165164                        clip_put_data(callid, &call);
     
    179178int main(int argc, char *argv[])
    180179{
    181         printf(NAME ": HelenOS clipboard service\n");
     180        printf("%s: HelenOS clipboard service\n", NAME);
    182181       
    183182        async_set_client_connection(clip_connection);
     
    186185                return -1;
    187186       
    188         printf(NAME ": Accepting connections\n");
     187        printf("%s: Accepting connections\n", NAME);
     188        task_retval(0);
    189189        async_manager();
    190190       
Note: See TracChangeset for help on using the changeset viewer.