mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +01:00
30 lines
496 B
C
30 lines
496 B
C
/*-
|
|
* See the file LICENSE for redistribution information.
|
|
*
|
|
* Copyright (c) 1997-2005
|
|
* Sleepycat Software. All rights reserved.
|
|
*
|
|
* $Id: raise.c,v 12.2 2005/06/16 20:20:50 bostic Exp $
|
|
*/
|
|
|
|
#include "db_config.h"
|
|
|
|
#ifndef NO_SYSTEM_INCLUDES
|
|
#include <signal.h>
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
/*
|
|
* raise --
|
|
* Send a signal to the current process.
|
|
*
|
|
* PUBLIC: #ifndef HAVE_RAISE
|
|
* PUBLIC: int raise __P((int));
|
|
* PUBLIC: #endif
|
|
*/
|
|
int
|
|
raise(s)
|
|
int s;
|
|
{
|
|
return (kill(getpid(), s));
|
|
}
|