Changeset 3815efb in mainline


Ignore:
Timestamp:
2011-06-21T11:22:37Z (13 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3015f4d
Parents:
40f606b
Message:

cstyle

Location:
uspace
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/klog/klog.c

    r40f606b r3815efb  
    143143 * Receives kernel klog notifications.
    144144 *
    145  * @param callid        IPC call ID
    146  * @param call          IPC call structure
    147  * @param arg           Local argument
     145 * @param callid IPC call ID
     146 * @param call   IPC call structure
     147 * @param arg    Local argument
    148148 *
    149149 */
  • uspace/app/mkbd/main.c

    r40f606b r3815efb  
    280280        size_t actual_size;
    281281        int event_nr;
    282 
     282       
    283283        while (true) {
    284284                /** @todo Try blocking call. */
  • uspace/lib/c/generic/async.c

    r40f606b r3815efb  
    213213 * This function is defined as a weak symbol - to be redefined in user code.
    214214 *
    215  * @param callid        Hash of the incoming call.
    216  * @param call          Data of the incoming call.
    217  * @param arg           Local argument
     215 * @param callid Hash of the incoming call.
     216 * @param call   Data of the incoming call.
     217 * @param arg    Local argument
    218218 *
    219219 */
     
    228228 * This function is defined as a weak symbol - to be redefined in user code.
    229229 *
    230  * @param callid        Hash of the incoming call.
    231  * @param call          Data of the incoming call.
    232  * @param arg           Local argument.
     230 * @param callid Hash of the incoming call.
     231 * @param call   Data of the incoming call.
     232 * @param arg    Local argument.
    233233 *
    234234 */
     
    709709 * @param cfibril       Fibril function that should be called upon opening the
    710710 *                      connection.
    711  * @param carg          Extra argument to pass to the connection fibril
     711 * @param carg          Extra argument to pass to the connection fibril
    712712 *
    713713 * @return New fibril id or NULL on failure.
  • uspace/lib/c/generic/str.c

    r40f606b r3815efb  
    540540
    541541        dstr_size = str_size(dest);
    542         if (dstr_size >= size) {
     542        if (dstr_size >= size)
    543543                return;
    544         }
     544       
    545545        str_cpy(dest + dstr_size, size - dstr_size, src);
    546546}
  • uspace/lib/c/generic/task.c

    r40f606b r3815efb  
    190190       
    191191        return EOK;
     192       
    192193error:
    193194        /* Error exit */
  • uspace/lib/c/include/async.h

    r40f606b r3815efb  
    5555/** Client connection handler
    5656 *
    57  * @param callid        ID of incoming call or 0 if connection initiated from
    58  *                      inside using async_connect_to_me()
    59  * @param call          Incoming call or 0 if connection initiated from inside
    60  * @param arg           Local argument passed from async_new_connection() or
    61  *                      async_connect_to_me()
     57 * @param callid ID of incoming call or 0 if connection initiated from
     58 *               inside using async_connect_to_me()
     59 * @param call   Incoming call or 0 if connection initiated from inside
     60 * @param arg    Local argument passed from async_new_connection() or
     61 *               async_connect_to_me()
    6262 */
    6363typedef void (*async_client_conn_t)(ipc_callid_t, ipc_call_t *, void *);
Note: See TracChangeset for help on using the changeset viewer.