Chris Faylor wrote:
> Hmm. Some OS's have a "personality" model. We could actually adopt
> something like that. New code could default to the "linux personality"
> while older code could stil use the default "cygwin hodge-podge personality".
> This might not be feasible with some things like timezone, etc.
That could be managed by the header file.
extern time_t _timezone __declspec(dllimport);
#if defined (LINUX_PERSONALITY)
#define timezone _timezone
#elif defined (HODGE_PODGE_PERSONALITY)
char *_EXFUN(timezone, (void));
#endif
Corinna
--
Want to unsubscribe from this list?
Send a message to [EMAIL PROTECTED]
- Re: RFC: linux compatibility Chris Faylor
- Re: RFC: linux compatibility Gerrit Haase
- Re: RFC: linux compatibility Earnie Boyd
- Re: RFC: linux compatibility DJ Delorie
- Re: RFC: linux compatibility Earnie Boyd
- Re: RFC: linux compatibility Chris Faylor
- Re: RFC: linux compatibility DJ Delorie
- Re: RFC: linux compatibility Randall R Schulz
- RE: RFC: linux compatibility Robinow, David
- Re: RFC: linux compatibility Chris Faylor
- Re: RFC: linux compatibility Corinna Vinschen
- Re: RFC: linux compatibility Tom Hutto
- Re: RFC: linux compatibility Corinna Vinschen
- Re: RFC: linux compatibility Tom Hutto
- Re: RFC: linux compatibility Brian . P . Kasper
- Re: RFC: linux compatibility John . Velman
- Re: RFC: linux compatibility Earnie Boyd
- Re: RFC: linux compatibility DJ Delorie
- Re: RFC: linux compatibility Corinna Vinschen
- Re: RFC: linux compatibility DJ Delorie
- Re: RFC: linux compatibility DJ Delorie
