Changeset 7f1c620 in mainline for generic/include/security


Ignore:
Timestamp:
2006-07-04T17:17:56Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0ffa3ef5
Parents:
991779c5
Message:

Replace old u?? types with respective C99 variants (e.g. uint32_t, int64_t, uintptr_t etc.).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/include/security/cap.h

    r991779c5 r7f1c620  
    8080#define CAP_IRQ_REG             (1<<4)
    8181
    82 typedef __u32 cap_t;
     82typedef uint32_t cap_t;
    8383
    8484extern void cap_set(task_t *t, cap_t caps);
    8585extern cap_t cap_get(task_t *t);
    8686
    87 extern __native sys_cap_grant(sysarg64_t *uspace_taskid_arg, cap_t caps);
    88 extern __native sys_cap_revoke(sysarg64_t *uspace_taskid_arg, cap_t caps);
     87extern unative_t sys_cap_grant(sysarg64_t *uspace_taskid_arg, cap_t caps);
     88extern unative_t sys_cap_revoke(sysarg64_t *uspace_taskid_arg, cap_t caps);
    8989
    9090#endif
Note: See TracChangeset for help on using the changeset viewer.