[source navigation] [diff markup] [identifier search] [freetext search] [file search]

Oldlinux Cross Reference
Linux/lib/_exit.c

Version: [1.0] [0.99.11] [0.99] [0.98] [0.97] [0.96a] [0.95] [0.12] [0.11] [0.01]
Architecture: [i386]

  1 /*
  2  *  linux/lib/_exit.c
  3  *
  4  *  (C) 1991  Linus Torvalds
  5  */
  6 
  7 #define __LIBRARY__
  8 #include <unistd.h>
  9 
 10 volatile void _exit(int exit_code)
 11 {
 12         __asm__("int $0x80"::"a" (__NR_exit),"b" (exit_code));
 13 }
 14 

[source navigation] [diff markup] [identifier search] [freetext search] [file search]

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.