raise.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997, 1998, 1999, 2000
  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.3 2000/02/14 02:59:41 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. return (kill(getpid(), s));
  28. }