Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2004-05-15 20:09:04 +0400
committerChristopher Faylor <me@cgf.cx>2004-05-15 20:09:04 +0400
commit71af2ed39e0c727eb8b9df6bdc1d9dbed762ad5d (patch)
tree69921ab4064acfef57405505ae50ca752b64abbc /winsup/cygwin/cygheap.h
parent982c8ecdb4c8bd31c7a145117c74199e56a2dfdc (diff)
* 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.h8
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