diff options
author | Christopher Faylor <me@cgf.cx> | 2004-05-15 16:09:04 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-05-15 16:09:04 +0000 |
commit | 71af2ed39e0c727eb8b9df6bdc1d9dbed762ad5d (patch) | |
tree | 69921ab4064acfef57405505ae50ca752b64abbc /winsup/cygwin/cygheap.h | |
parent | 982c8ecdb4c8bd31c7a145117c74199e56a2dfdc (diff) | |
download | cygnal-71af2ed39e0c727eb8b9df6bdc1d9dbed762ad5d.tar.gz cygnal-71af2ed39e0c727eb8b9df6bdc1d9dbed762ad5d.tar.bz2 cygnal-71af2ed39e0c727eb8b9df6bdc1d9dbed762ad5d.zip |
* cygheap.h: Remove some parameter names from declarations throughout.
(cygheap::set): Reflect changes in declaration for arguments and return value
from previous checkin.
Diffstat (limited to 'winsup/cygwin/cygheap.h')
-rw-r--r-- | winsup/cygwin/cygheap.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/cygwin/cygheap.h b/winsup/cygwin/cygheap.h index a32e0d5d1..15b179ea0 100644 --- a/winsup/cygwin/cygheap.h +++ b/winsup/cygwin/cygheap.h @@ -82,7 +82,7 @@ public: return p; } bool exists () {return !!m;} - void set (const char *posix, const char *native); + void set (const char *, const char *); size_t posix_length () const { return m->posix_pathlen; } const char *posix_path () const { return m->posix_path; } size_t native_length () const { return m->native_pathlen; } @@ -217,12 +217,12 @@ struct cwdstuff char *win32; DWORD hash; muto *cwd_lock; - char *get (char *buf, int need_posix = 1, int with_chroot = 0, unsigned ulen = CYG_MAX_PATH); + char *get (char *, int = 1, int = 0, unsigned = CYG_MAX_PATH); DWORD get_hash (); void init (); - void fixup_after_exec (char *win32, char *posix, DWORD hash); + void fixup_after_exec (char *, char *, DWORD); bool get_initial (); - void set (const char *win32_cwd, const char *posix_cwd = NULL); + int set (const char *, const char *, bool); }; #ifdef DEBUGGING |