view liboctave/wrappers/signal-wrappers.h @ 21940:70824a0dd009

provide wrapper for kill * signal-wrappers.c, signal-wrappers.h (octave_kill_wrapper, octave_have_kill): New functions. * oct-syscalls.cc: Include signal-wrappers.h instead of signal.h. (octave::sys::kill): Use new wrapper functions.
author John W. Eaton <jwe@octave.org>
date Fri, 17 Jun 2016 06:51:43 -0400
parents da9b960b1b2d
children 1d23b75cbcd1
line wrap: on
line source

/*

Copyright (C) 2016 John W. Eaton

This file is part of Octave.

Octave is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3 of the License, or (at your
option) any later version.

Octave is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with Octave; see the file COPYING.  If not, see
<http://www.gnu.org/licenses/>.

*/

#if ! defined (octave_signal_wrappers_h)
#define octave_signal_wrappers_h 1

#include <sys/types.h>

#if ! defined (__cplusplus)
#  include <stdbool.h>
#endif

#if defined __cplusplus
extern "C" {
#endif

extern int octave_kill_wrapper (pid_t pid, int signum);

extern char *octave_strsignal_wrapper (int signum);

extern bool octave_have_kill (void);
  
#if defined __cplusplus
}
#endif

#endif