Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
a3c04b00
Commit
a3c04b00
authored
Jan 12, 1995
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cosmetics
parent
b9418686
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
Modules/Setup.in
Modules/Setup.in
+4
-1
Modules/cryptmodule.c
Modules/cryptmodule.c
+0
-1
Modules/signalmodule.c
Modules/signalmodule.c
+1
-1
No files found.
Modules/Setup.in
View file @
a3c04b00
...
...
@@ -264,7 +264,10 @@ rotor rotormodule.c # enigma-inspired encryption
#sybase sybasemodule.c
# Generic (SunOS / SVR4) dynamic loading module
# Generic (SunOS / SVR4) dynamic loading module.
# This is not needed for dynamic loading of Python modules --
# it is a highly experimental and dangerous device for calling
# *arbitrary* C functions in *arbitrary* shared libraries.
#dl dlmodule.c
...
...
Modules/cryptmodule.c
View file @
a3c04b00
...
...
@@ -2,7 +2,6 @@
*/
#include "allobjects.h"
#include "modsupport.h"
#include <sys/types.h>
...
...
Modules/signalmodule.c
View file @
a3c04b00
...
...
@@ -57,7 +57,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
generated by the keyboard (e.g. SIGINT) are delivered to all
threads (e.g. SGI), while in others (e.g. Solaris) such signals are
delivered to one random thread (an intermediate possibility would
be to deliver it to the main thread -- POSIX?
??
). For now, we have
be to deliver it to the main thread -- POSIX?). For now, we have
a working implementation that works in all three cases -- the
handler ignores signals if getpid() isn't the same as in the main
thread. XXX This is a hack.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment