当前位置:  技术问答>linux和unix

exit(0)和_exit(0)有什么区别呢?

    来源: 互联网  发布时间:2015-02-19

    本文导语:  对程序运行有什么影响呢? | _exit是系统调用 exit是c库函数        _exit - terminate the current process SYNOPSIS        #include         void _exit(int status); DESCRIPTION        _exit termin...

对程序运行有什么影响呢?

|
_exit是系统调用
exit是c库函数

       _exit - terminate the current process

SYNOPSIS
       #include 

       void _exit(int status);

DESCRIPTION
       _exit terminates the calling process immediately. Any open file descriptors belong?
       ing to the process are closed; any children of the process are inherited by process
       1, init, and the process's parent is sent a SIGCHLD signal.

       status  is  returned to the parent process as the process's exit status, and can be
       collected using one of the wait family of calls.

RETURN VALUE
       _exit never returns.

===================================================
       exit - cause normal program termination

SYNOPSIS
       #include 

       void exit(int status);

DESCRIPTION
       The  exit()  function  causes normal program termination and the value of status is
       returned to the parent.  All functions registered with atexit() and  on_exit()  are
       called in the reverse order of their registration, and all open streams are flushed
       and closed.

RETURN VALUE
       The exit() function does not return.

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java命名空间java.lang类system的类成员方法: exit定义及介绍
  • 请问exit与_exit的区别?
  • java命名空间javax.swing.event类hyperlinkevent.eventtype的类成员方法: exited定义及介绍
  • System.exit(0);和System.exit(1)有什么区别?
  • java命名空间java.awt类event的类成员方法: mouse_exit定义及介绍
  • _exit()函数和_Exit()函数有区别吗?
  • java命名空间java.util.logging类logger的类成员方法: exiting定义及介绍
  • EXIT_SUCCESS和EXIT_FAILURE问题
  • java命名空间java.awt.event类mouseevent的类成员方法: mouse_exited定义及介绍
  • 现在用 System.exit(0) or System.exit(1) 来退出弹出窗口,但是连父窗口一起关闭(紧急求解)
  • java命名空间javax.swing类jframe的类成员方法: exit_on_close定义及介绍
  • linux exit和_exit函数的辨析
  • java命名空间javax.swing接口windowconstants的类成员方法: exit_on_close定义及介绍
  • exit和fork是什么关系?他们是怎么配合使用的?
  • java命名空间java.lang类runtime的类成员方法: exit定义及介绍
  • 我在shell中su 到其它用户然后exit就退出shel
  • 关于exit函数,参数值的疑问
  • exit与wait
  • 请高手帮忙解释一下,insmod ./$module.ko || exit 1中的“||”是什么意思啊,多谢!
  • 调用exit函数的一个问题?
  • jquery iis7站长之家


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3