This is the mail archive of the
newlib@sourceware.org
mailing list for the newlib project.
Re: [Cbe-oss-dev] [PATCH RFC] libspe2 add opendir and related functions
- From: "D. Herrendoerfer" <d dot herrendoerfer at herrendoerfer dot name>
- To: Patrick Mansfield <patmans at us dot ibm dot com>
- Cc: cbe-oss-dev at ozlabs dot org, newlib at sourceware dot org
- Date: Mon, 18 Jun 2007 16:34:05 +0900
- Subject: Re: [Cbe-oss-dev] [PATCH RFC] libspe2 add opendir and related functions
- References: <20070614150337.GA10320@us.ibm.com> <20070615175619.GA16215@us.ibm.com>
Added.
Thank you very much.
D.Herrendoerfer
On Fri, 2007-06-15 at 10:56 -0700, Patrick Mansfield wrote:
> Modified to just always use 64 bits (for opendir DIR* result, and to
> get
> the DIR* from the SPU), so we don't have to hash to a 32 bit value.
>
> Add assist calls for:
>
> DIR *opendir(const char *name)
> int closedir(DIR *dir)
> struct dirent *readdir(DIR *dir)
> void rewinddir(DIR *dir)
> void seekdir(DIR *dir, off_t offset)
> off_t telldir(DIR *dir)
>
> Signed-off-by: Patrick Mansfield <patmans@us.ibm.com>
>