Changeset 1b20da0 in mainline for abi/include


Ignore:
Timestamp:
2018-02-28T17:52:03Z (8 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3061bc1
Parents:
df6ded8
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
Message:

style: Remove trailing whitespace on non-empty lines, in certain file types.

Command used: tools/srepl '\([^[:space:]]\)\s\+$' '\1' -- *.c *.h *.py *.sh *.s *.S *.ag

Location:
abi/include/abi
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • abi/include/abi/asmtool.h

    rdf6ded8 r1b20da0  
    2727 */
    2828
    29 /** @addtogroup asmtool 
     29/** @addtogroup asmtool
    3030 * @{
    3131 */
     
    5252#define FUNCTION_BEGIN(func) \
    5353        .type func STT_FUNC; \
    54         SYMBOL_BEGIN(func)     
     54        SYMBOL_BEGIN(func)
    5555#define FUNCTION_END(func) \
    5656        SYMBOL_END(func)
  • abi/include/abi/ipc/methods.h

    rdf6ded8 r1b20da0  
    7272         *                     - passes call to userspace. If userspace
    7373         *                       responds with error, phone is deallocated and
    74          *                       error is sent back to caller. Otherwise 
     74         *                       error is sent back to caller. Otherwise
    7575         *                       the call is accepted and the response is sent back.
    7676         *                     - the hash of the allocated phone is passed to userspace
     
    112112
    113113        /** Receive as_area over IPC.
    114          * 
     114         *
    115115         * - ARG1 - destination as_area size
    116116         * - ARG2 - user defined argument
     
    142142         *
    143143         * - ARG1 - destination virtual address in the source address space
    144          * - ARG2 - size of data to be received, may be cropped by the recipient 
     144         * - ARG2 - size of data to be received, may be cropped by the recipient
    145145         *
    146146         * on answer, the recipient must set:
  • abi/include/abi/mm/as.h

    rdf6ded8 r1b20da0  
    4747#define AS_MAP_FAILED  ((void *) -1)
    4848
    49 #define AS_AREA_UNPAGED NULL 
     49#define AS_AREA_UNPAGED NULL
    5050
    5151/** Address space area info exported to uspace. */
Note: See TracChangeset for help on using the changeset viewer.