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
58f07a9d
Commit
58f07a9d
authored
Jun 05, 2012
by
Gregory P. Smith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes issue #15000: support the odd x32 abi on posixsubprocess's system call.
parent
2d7d56ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
Misc/NEWS
Misc/NEWS
+2
-0
Modules/_posixsubprocess.c
Modules/_posixsubprocess.c
+7
-0
No files found.
Misc/NEWS
View file @
58f07a9d
...
...
@@ -275,6 +275,8 @@ Library
Extension Modules
-----------------
- Issue #15000: Support the "unique" x32 architecture in _posixsubprocess.c.
- Issue #9041: An issue in ctypes.c_longdouble, ctypes.c_double, and
ctypes.c_float that caused an incorrect exception to be returned in the
case of overflow has been fixed.
...
...
Modules/_posixsubprocess.c
View file @
58f07a9d
...
...
@@ -175,8 +175,15 @@ _close_fds_by_brute_force(int start_fd, int end_fd, PyObject *py_fds_to_keep)
* chooses to break compatibility with all existing binaries. Highly Unlikely.
*/
struct
linux_dirent
{
#if defined(__x86_64__) && defined(__ILP32__)
/* Support the wacky x32 ABI (fake 32-bit userspace speaking to x86_64
* kernel interfaces) - https://sites.google.com/site/x32abi/ */
unsigned
long
long
d_ino
;
unsigned
long
long
d_off
;
#else
unsigned
long
d_ino
;
/* Inode number */
unsigned
long
d_off
;
/* Offset to next linux_dirent */
#endif
unsigned
short
d_reclen
;
/* Length of this linux_dirent */
char
d_name
[
256
];
/* Filename (null-terminated) */
};
...
...
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