Ignore:
Timestamp:
2006-09-01T21:01:02Z (18 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.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/libc/arch/amd64/include/syscall.h

    r9314ee1 r002e613  
    11/*
    2  * Copyright (C) 2006 Martin Decky
     2 * Copyright (C) 2005 Martin Decky
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup libcsparc64 sparc64
    30   * @brief sparc64 architecture dependent parts of libc
    31   * @ingroup lc
     29/** @addtogroup libc
    3230 * @{
    3331 */
    34 /** @file
     32/**
     33 * @file
    3534 */
    3635
    37 #include <libc.h>
     36#ifndef LIBC_amd64_SYSCALL_H_
     37#define LIBC_amd64_SYSCALL_H_
    3838
    39 sysarg_t __syscall(const sysarg_t p1, const sysarg_t p2, const sysarg_t p3, const sysarg_t p4, const syscall_t id)
    40 {
    41         return 0;
    42 }
     39#include <syscall.h>
     40
     41#endif
    4342
    4443/** @}
Note: See TracChangeset for help on using the changeset viewer.