Changeset 002e613 in mainline for uspace/libc/include


Ignore:
Timestamp:
2006-09-01T21:01:02Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cfa70add
Parents:
9314ee1
Message:

Allow architectures to decide between inlined and not inlined version of syscall wrapper.
Implement inlined syscall wrapper for sparc64.

Location:
uspace/libc/include
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/libc/include/libc.h

    r9314ee1 r002e613  
    3838#include <types.h>
    3939#include <kernel/syscall/syscall.h>
     40#include <libarch/syscall.h>
    4041
    4142#define __SYSCALL0(id) __syscall(0, 0, 0, 0, id)
     
    4849extern void __io_init(void);
    4950extern void __exit(void);
    50 extern sysarg_t __syscall(const sysarg_t p1, const sysarg_t p2, const sysarg_t p3, const sysarg_t p4, const syscall_t id);
    51 
    5251
    5352#endif
  • uspace/libc/include/sys/types.h

    r9314ee1 r002e613  
    2727 */
    2828
    29  /** @addtogroup libc
     29/** @addtogroup libc
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __LIBC__SYS_TYPES_H__
    36 #define __LIBC__SYS_TYPES_H__
     35#ifndef LIBC_SYS_TYPES_H_
     36#define LIBC_SYS_TYPES_H_
    3737
    3838#include <types.h>
     
    4040#endif
    4141
    42 
    43 
    44  /** @}
     42/** @}
    4543 */
    4644 
Note: See TracChangeset for help on using the changeset viewer.