소스 검색

* added syscall_nr_pwrite/read64 aliases for build

git-svn-id: trunk@2737 -
tom_at_work 19 년 전
부모
커밋
a0bc256b8f
1개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. 8 1
      rtl/linux/powerpc64/sysnr.inc

+ 8 - 1
rtl/linux/powerpc64/sysnr.inc

@@ -4,7 +4,6 @@
     member of the Free Pascal development team.
     member of the Free Pascal development team.
 
 
     This file contains the system call numbers.
     This file contains the system call numbers.
-
     See the file COPYING.FPC, included in this distribution,
     See the file COPYING.FPC, included in this distribution,
     for details about the copyright.
     for details about the copyright.
 
 
@@ -18,6 +17,10 @@
   /usr/include/asm-ppc64/unistd.h
   /usr/include/asm-ppc64/unistd.h
   The following command line parameters were used:
   The following command line parameters were used:
     unistd.h
     unistd.h
+
+  Manual additions for post-2.6.11-1 kernels, in particular:
+  - aliases for syscall_nr_pread/write64 for 2.6.11-3 kernel
+  - syscalls 273-275 for 2.6.13 kernels
 }
 }
 
 
 const
 const
@@ -291,3 +294,7 @@ const
   syscall_nr_inotify_init = 275;
   syscall_nr_inotify_init = 275;
   syscall_nr_inotify_add_watch = 276;
   syscall_nr_inotify_add_watch = 276;
   syscall_nr_inotify_rm_watch = 277;
   syscall_nr_inotify_rm_watch = 277;
+
+  syscall_nr_pwrite64 = syscall_nr_pwrite;
+  syscall_nr_pread64 = syscall_nr_pread;
+