Changeset e4f8c77 in mainline for uspace/lib/posix/sys/types.h


Ignore:
Timestamp:
2011-07-13T22:39:18Z (13 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:
e6910c8
Parents:
5974661 (diff), 8ecef91 (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 libposix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/sys/types.h

    r5974661 re4f8c77  
    4343typedef unsigned int posix_uid_t;
    4444typedef unsigned int posix_gid_t;
    45 typedef aoff64_t posix_off_t;
    46 typedef unsigned int posix_blksize_t;
    47 typedef unsigned int posix_blkcnt_t;
     45typedef off64_t posix_off_t;
     46typedef long posix_blksize_t;
     47typedef long posix_blkcnt_t;
     48typedef int64_t posix_pid_t;
     49typedef sysarg_t posix_dev_t;
     50
     51/* PThread types */
     52typedef struct posix_thread_attr posix_thread_attr_t;
     53
     54/* Clock types */
     55typedef long posix_clock_t;
     56typedef int posix_clockid_t;
    4857
    4958#ifndef LIBPOSIX_INTERNAL
     
    5564        #define blksize_t posix_blksize_t
    5665        #define blkcnt_t posix_blkcnt_t
     66        #define pid_t posix_pid_t
     67        #define dev_t posix_dev_t
     68       
     69        #define pthread_attr_t posix_thread_attr_t
     70       
     71        #define clock_t posix_clock_t
     72        #define clockid_t posix_clockid_t
    5773#endif
    5874
Note: See TracChangeset for help on using the changeset viewer.