summaryrefslogtreecommitdiffstatshomepage
path: root/unix/modos.c
Commit message (Collapse)AuthorAge
* modos: stat(): Accept bytes argument.Paul Sokolovsky2014-05-26
|
* unix: Fix casting issue, int to small int object.Damien George2014-05-21
|
* modos: Clean 64-bit issues.Paul Sokolovsky2014-05-15
|
* unix: Add "_os" module with stat().Paul Sokolovsky2014-05-14
stat() is bad function to use using FFI, because its ABI is largely private. To start with, Glibc .so doesn't even have "stat" symbol. Then, layout of struct stat is too implementation-dependent. So, introduce _os to deal with stat() and other similar cases.