search for: d1b2629

Displaying 2 results from an estimated 2 matches for "d1b2629".

Did you mean: 12629
2009 Mar 05
1
[PATCH 4/5] COM32: add trivial stat() function
...\ + sys/isatty.o sys/fstat.o sys/stat.o \ \ sys/zfile.o sys/zfopen.o \ \ diff --git a/com32/lib/sys/stat.c b/com32/lib/sys/stat.c new file mode 100644 index 0000000..d1b2629 --- /dev/null +++ b/com32/lib/sys/stat.c @@ -0,0 +1,73 @@ +/* ----------------------------------------------------------------------- * + * + * Copyright 2009 Gene Cumm - All Rights Reserved + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this softw...
2009 Mar 06
0
[PATCH 3/3] COM32/stat(): preset ret and move zeroing errno
From: Gene Cumm <gene.cumm at gmail.com> COM32/stat(): preset ret and move zeroing errno Signed-off-by: Gene Cumm <gene.cumm at gmail.com> --- Depends on string of patches this week diff --git a/com32/lib/sys/stat.c b/com32/lib/sys/stat.c index d1b2629..da55e0c 100644 --- a/com32/lib/sys/stat.c +++ b/com32/lib/sys/stat.c @@ -28,7 +28,9 @@ /* * stat.c * - * Very trivial stat emulation by using open(), fstat(), close() + * Very trivial stat emulation by using open(), then either fstat() and + * close() or opendir() and closedir(). Probably mo...