raise.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: raise.c,v 11.6 2002/01/11 15:51:28 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <signal.h>
  13. #include <unistd.h>
  14. #endif
  15. /*
  16.  * raise --
  17.  * Send a signal to the current process.
  18.  *
  19.  * PUBLIC: #ifndef HAVE_RAISE
  20.  * PUBLIC: int raise __P((int));
  21.  * PUBLIC: #endif
  22.  */
  23. int
  24. raise(s)
  25. int s;
  26. {
  27. /*
  28.  * Do not use __os_id(), as it may not return the process ID -- any
  29.  * system with kill(3) probably has getpid(3).
  30.  */
  31. return (kill(getpid(), s));
  32. }