-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes #2
- Loading branch information
Showing
9 changed files
with
182 additions
and
347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ Fine-grained alarm function | |
#***************************************************************************** | ||
# Copyright (C) 2013-2016 Jeroen Demeyer <[email protected]> | ||
# | ||
# Distributed under the terms of the GNU General Public License (GPL) | ||
# as published by the Free Software Foundation; either version 2 of | ||
# Distributed under the terms of the GNU Lesser General Public License (GPL) | ||
# as published by the Free Software Foundation; either version 3 of | ||
# the License, or (at your option) any later version. | ||
# http://www.gnu.org/licenses/ | ||
#***************************************************************************** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,8 @@ Interrupt and signal handling for Cython | |
* 2006 Martin Albrecht <[email protected]> | ||
* 2010-2015 Jeroen Demeyer <[email protected]> | ||
* | ||
* Distributed under the terms of the GNU General Public License (GPL) | ||
* as published by the Free Software Foundation; either version 2 of | ||
* Distributed under the terms of the GNU Lesser General Public License (GPL) | ||
* as published by the Free Software Foundation; either version 3 of | ||
* the License, or (at your option) any later version. | ||
* http://www.gnu.org/licenses/ | ||
****************************************************************************/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,8 +41,8 @@ will never be handled and always causes Python to exit. | |
* 2006 Martin Albrecht <[email protected]> | ||
* 2010-2015 Jeroen Demeyer <[email protected]> | ||
* | ||
* Distributed under the terms of the GNU General Public License (GPL) | ||
* as published by the Free Software Foundation; either version 2 of | ||
* Distributed under the terms of the GNU Lesser General Public License (LGPL) | ||
* as published by the Free Software Foundation; either version 3 of | ||
* the License, or (at your option) any later version. | ||
* http://www.gnu.org/licenses/ | ||
****************************************************************************/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,8 @@ AUTHORS: | |
#***************************************************************************** | ||
# Copyright (C) 2011-2015 Jeroen Demeyer <[email protected]> | ||
# | ||
# Distributed under the terms of the GNU General Public License (GPL) | ||
# as published by the Free Software Foundation; either version 2 of | ||
# Distributed under the terms of the GNU Lesser General Public License (GPL) | ||
# as published by the Free Software Foundation; either version 3 of | ||
# the License, or (at your option) any later version. | ||
# http://www.gnu.org/licenses/ | ||
#***************************************************************************** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,8 @@ We disable crash logs for this test run:: | |
#***************************************************************************** | ||
# Copyright (C) 2010-2016 Jeroen Demeyer <[email protected]> | ||
# | ||
# Distributed under the terms of the GNU General Public License (GPL) | ||
# as published by the Free Software Foundation; either version 2 of | ||
# Distributed under the terms of the GNU Lesser General Public License (GPL) | ||
# as published by the Free Software Foundation; either version 3 of | ||
# the License, or (at your option) any later version. | ||
# http://www.gnu.org/licenses/ | ||
#***************************************************************************** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,15 @@ | |
* C functions for use in tests.pyx | ||
*/ | ||
|
||
/***************************************************************************** | ||
* Copyright (C) 2010-2016 Jeroen Demeyer <[email protected]> | ||
* | ||
* Distributed under the terms of the GNU Lesser General Public License (GPL) | ||
* as published by the Free Software Foundation; either version 3 of | ||
* the License, or (at your option) any later version. | ||
* http://www.gnu.org/licenses/ | ||
****************************************************************************/ | ||
|
||
#include <stdlib.h> | ||
#include <stdio.h> | ||
#include <string.h> | ||
|