论坛风格切换切换到宽版
  • 816阅读
  • 2回复

[问题求助][RedHat] 2.6内核的sys_call.s文件在哪哥文件夹下? [复制链接]

上一主题 下一主题
离线yylqymzk.
 
发帖
2146
C币
-131837
威望
395
贡献值
1
银元
-2
铜钱
4823
人人网人气币
0
只看楼主 倒序阅读 使用道具 楼主  发表于: 2009-05-01
2..6内核的sys_call.s文件在哪里?域名

评价一下你浏览此帖子的感受

精彩

感动

搞笑

开心

愤怒

无聊

灌水
离线陈茵茵.
发帖
1977
C币
-235565
威望
344
贡献值
1
银元
-4
铜钱
4356
人人网人气币
0
只看该作者 沙发  发表于: 2010-04-13
Re:[RedHat]


QUOTE:原帖由 asm_mm 于 2009-1-19 18:55 发表
2.6内核的sys_call.s文件在哪里?

sys_call.s是低版本的文件名吧

./arch/x86/kernel/syscall_table_32.S

离线trefoil.
发帖
1962
C币
-199277
威望
397
贡献值
1
银元
-1
铜钱
4497
人人网人气币
0
只看该作者 板凳  发表于: 2010-04-13
Re:[RedHat]
你得下载glibc源码才可以看到它的实现,以下是soket.S:

/* Copyright (C) 1994, 1997 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, write to the Free
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
   02111-1307 USA.  */

#include <sysdep.h>
#include <mach/machine/alpha_instruction.h>

ENTRY (syscall)
        .frame sp,0,ra
        mov a0, v0                /* Load system call number from first arg.  */
        mov a1, a0
        mov a2, a1
        mov a3, a2
        mov a4, a3
        mov a5, a4
        /* Load the remaining possible args (up to 11) from the stack.  */
        ldq a5,0(sp)
        ldq t0,8(sp)
        ldq t1,16(sp)
        ldq t2,24(sp)
        ldq t3,32(sp)
        ldq t4,40(sp)
        call_pal op_chmk
        RET
        .end        syscall
快速回复
限100 字节
如果您在写长篇帖子又不马上发表,建议存为草稿
 
上一个 下一个