X-Git-Url: https://git.ti.com/gitweb?p=ipc%2Fipcdev.git;a=blobdiff_plain;f=linux%2Fsrc%2Fapi%2FMultiProc.c;h=0a8435f1d1bacf67e4406ef911fe5746ac634137;hp=d40cc76db8abe8be5997ca596dacd23b5e81ef88;hb=51b55bf75c486b5693dd9a5a73024f20afb83d2b;hpb=6da9f8a60a668763094f4a1db0d14631d8055a84;ds=sidebyside diff --git a/linux/src/api/MultiProc.c b/linux/src/api/MultiProc.c index d40cc76..0a8435f 100644 --- a/linux/src/api/MultiProc.c +++ b/linux/src/api/MultiProc.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2014, Texas Instruments Incorporated + * Copyright (c) 2013-2015 Texas Instruments Incorporated - http://www.ti.com * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -30,9 +30,9 @@ * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* - * @file MultiProcQ.c + * @file MultiProcQ.c * - * @brief MultiProc Linux implementation + * @brief MultiProc Linux implementation */ /* Standard IPC header */ @@ -72,32 +72,31 @@ Void MultiProc_getConfig (MultiProc_Config * cfg) assert (cfg != NULL); handle = LAD_findHandle(); - if (handle == LAD_MAXNUMCLIENTS) { - PRINTVERBOSE1( - "MultiProc_getConfig: can't find connection to daemon for pid %d\n", - getpid()) - return; + if (handle == LAD_MAXNUMCLIENTS) { + PRINTVERBOSE1("MultiProc_getConfig: can't find connection to daemon " + "for pid %d\n", getpid()) + return; } cmd.cmd = LAD_MULTIPROC_GETCONFIG; cmd.clientId = handle; if ((status = LAD_putCommand(&cmd)) != LAD_SUCCESS) { - PRINTVERBOSE1( - "MultiProc_getConfig: sending LAD command failed, status=%d\n", status) - return; + PRINTVERBOSE1("MultiProc_getConfig: sending LAD command failed, " + "status=%d\n", status) + return; } if ((status = LAD_getResponse(handle, &rsp)) != LAD_SUCCESS) { - PRINTVERBOSE1("MultiProc_getConfig: no LAD response, status=%d\n", status) - return; + PRINTVERBOSE1("MultiProc_getConfig: no LAD response, status=%d\n", + status) + return; } status = rsp.multiprocGetConfig.status; - PRINTVERBOSE2( - "MultiProc_getConfig: got LAD response for client %d, status=%d\n", - handle, status) + PRINTVERBOSE2("MultiProc_getConfig: got LAD response for client %d, " + "status=%d\n", handle, status) memcpy(cfg, &rsp.multiprocGetConfig.cfg, sizeof(*cfg));