mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
- The default break signal mask (SIGBREAKF_CTRL_C) is no longer
hard-coded. You can override it at link time with a different variable value for __break_signal_mask. This may have to be augmented by an API for changing the value. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15094 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: dos.h,v 1.18 2006-01-08 12:06:14 obarthel Exp $
|
||||
* $Id: dos.h,v 1.19 2006-04-05 08:39:46 obarthel Exp $
|
||||
*
|
||||
* :ts=4
|
||||
*
|
||||
@ -123,6 +123,19 @@ extern void __check_abort(void);
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
/*
|
||||
* You can override the default break signal mask which is used by
|
||||
* __check_abort() and other functions. This must be done at link
|
||||
* time because the break signal checking is set up very early on
|
||||
* while the program startup code is preparing your code to be run.
|
||||
* In particular, this affects the socket I/O functionality which
|
||||
* configures the break signal only once. The default value of the
|
||||
* __break_signal_mask variable is SIGBREAKF_CTRL_C.
|
||||
*/
|
||||
extern ULONG __break_signal_mask;
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
/*
|
||||
* Call this function to set up the environment information for your
|
||||
* program to access its data. This is typically used in Task or Process
|
||||
|
||||
Reference in New Issue
Block a user