Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
a6605cb7
Commit
a6605cb7
authored
Aug 11, 2017
by
scoder
Committed by
GitHub
Aug 11, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1816 from Nikratio/birthtime
Add st_birthtime to struct stat
parents
878cc63e
7bf20f45
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
Cython/Includes/posix/stat.pxd
Cython/Includes/posix/stat.pxd
+5
-0
No files found.
Cython/Includes/posix/stat.pxd
View file @
a6605cb7
...
@@ -18,6 +18,11 @@ cdef extern from "<sys/stat.h>" nogil:
...
@@ -18,6 +18,11 @@ cdef extern from "<sys/stat.h>" nogil:
time_t
st_mtime
time_t
st_mtime
time_t
st_ctime
time_t
st_ctime
# st_birthtime exists on *BSD and OS X.
# Under Linux, defining it here does not hurt. Compilation under Linux
# will only (and rightfully) fail when attempting to use the field.
time_t
st_birthtime
# POSIX prescribes including both <sys/stat.h> and <unistd.h> for these
# POSIX prescribes including both <sys/stat.h> and <unistd.h> for these
cdef
extern
from
"<unistd.h>"
nogil
:
cdef
extern
from
"<unistd.h>"
nogil
:
int
fchmod
(
int
,
mode_t
)
int
fchmod
(
int
,
mode_t
)
...
...
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