What are unimplemented system calls?

gangadhars

I was revising Linux system calls. I found that a few calls are unimplemented system calls. For example: afs_syscall. I don't understand why they are included in man pages if they are not yet available.

  1. They are not implemented in the kernel. So who will implement them? Will they be available in future kernel releases? Or does the user have to implement them? Or will distributions implement them?

  2. Are they really necessary? What is the use of unimplemented system calls?

  3. If some one implemented these calls, how can I know they are implemented, what arguments do I have to pass and what will they return?

jlliagre

Most of them used to be implemented at some point in Linux kernel history time, but some like at least vserver are still implemented in specific kernels.

The majority of these calls is now essentially obsolete but their slot remains and contains a stub which role is not to break old code and allow a re-implementation in a specialized or new kernel should it be needed.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

What system and library calls are safe while forking?

From Dev

What are the return values of system calls in Assembly?

From Dev

What system and library calls are safe while forking?

From Dev

What is the difference between system calls and instruction set

From Dev

What are the Windows and Linux native OS/system calls made from malloc()?

From Dev

What are the merits and demerits in using system calls in xcode project

From Dev

What is the relationship between system calls, message passing, and interrupts?

From Dev

exec() and system() system calls

From Dev

Java: What member value returned on unimplemented abstract method?

From Dev

How can I found out what system calls are used for system_profiler SPHardwareDataType

From Dev

When writing code for a specific Operating System, what are the tradeoffs between standard library calls vs all OS API calls?

From Dev

When writing code for a specific Operating System, what are the tradeoffs between standard library calls vs all OS API calls?

From Dev

API with no system calls

From Dev

Concurrent system calls in Linux

From Dev

Windows system calls

From Dev

multithreading system calls in python

From Dev

System calls overhead

From Dev

Making System Calls with Options

From Dev

Can system calls be interrupted?

From Dev

API with no system calls

From Dev

multithreading system calls in python

From Dev

System Calls in Perl

From Dev

System Calls in OS/161

From Dev

Linux:System calls for Who

From Dev

Need of some system calls

From Dev

List of system calls with explanation?

From Dev

Concurrent system calls in Linux

From Dev

Is it safe to restart system calls?

From Dev

What do I have to include on a C program to use POSIX system calls?

Related Related

  1. 1

    What system and library calls are safe while forking?

  2. 2

    What are the return values of system calls in Assembly?

  3. 3

    What system and library calls are safe while forking?

  4. 4

    What is the difference between system calls and instruction set

  5. 5

    What are the Windows and Linux native OS/system calls made from malloc()?

  6. 6

    What are the merits and demerits in using system calls in xcode project

  7. 7

    What is the relationship between system calls, message passing, and interrupts?

  8. 8

    exec() and system() system calls

  9. 9

    Java: What member value returned on unimplemented abstract method?

  10. 10

    How can I found out what system calls are used for system_profiler SPHardwareDataType

  11. 11

    When writing code for a specific Operating System, what are the tradeoffs between standard library calls vs all OS API calls?

  12. 12

    When writing code for a specific Operating System, what are the tradeoffs between standard library calls vs all OS API calls?

  13. 13

    API with no system calls

  14. 14

    Concurrent system calls in Linux

  15. 15

    Windows system calls

  16. 16

    multithreading system calls in python

  17. 17

    System calls overhead

  18. 18

    Making System Calls with Options

  19. 19

    Can system calls be interrupted?

  20. 20

    API with no system calls

  21. 21

    multithreading system calls in python

  22. 22

    System Calls in Perl

  23. 23

    System Calls in OS/161

  24. 24

    Linux:System calls for Who

  25. 25

    Need of some system calls

  26. 26

    List of system calls with explanation?

  27. 27

    Concurrent system calls in Linux

  28. 28

    Is it safe to restart system calls?

  29. 29

    What do I have to include on a C program to use POSIX system calls?

HotTag

Archive