Changeset 1b20da0 in mainline for uspace/lib/posix/src/time.c


Ignore:
Timestamp:
2018-02-28T17:52:03Z (7 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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/src/time.c

    rdf6ded8 r1b20da0  
    7878/**
    7979 * Converts a time value to a broken-down UTC time.
    80  * 
     80 *
    8181 * @param timer Time to convert.
    8282 * @param result Structure to store the result to.
     
    110110/**
    111111 * Converts a time value to a broken-down local time.
    112  * 
     112 *
    113113 * @param timer Time to convert.
    114114 * @param result Structure to store the result to.
     
    173173 * Converts the calendar time to a string in format
    174174 * "Sun Jan 1 00:00:00 1970\n" (Obsolete)
    175  * 
     175 *
    176176 * @param timer Time to convert.
    177177 * @param buf Buffer to store string to. Must be at least ASCTIME_BUF_LEN
     
    228228/**
    229229 * Get time. Only CLOCK_REALTIME is supported.
    230  * 
     230 *
    231231 * @param clock_id ID of the clock to query.
    232232 * @param tp Pointer to the variable where the time is to be written.
     
    254254 * Set time on a specified clock. As HelenOS doesn't support this yet,
    255255 * this function always fails.
    256  * 
     256 *
    257257 * @param clock_id ID of the clock to set.
    258258 * @param tp Time to set.
     
    279279/**
    280280 * Sleep on a specified clock.
    281  * 
     281 *
    282282 * @param clock_id ID of the clock to sleep on (only CLOCK_REALTIME supported).
    283283 * @param flags Flags (none supported).
Note: See TracChangeset for help on using the changeset viewer.