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:
authorCorinna Vinschen <corinna@vinschen.de>2003-05-21 12:01:57 +0400
committerCorinna Vinschen <corinna@vinschen.de>2003-05-21 12:01:57 +0400
commit5c768c978c52c277536c28925161148407206d63 (patch)
tree9cd32501cc344c4fb8d1343313c3021e4adc63be /winsup/cygwin/shared_info.h
parent3a9c82d0117666ddb0c140389d05d057db3fad0c (diff)
* shared_info.h: Match shared_name declaration with below change.
* shared.cc (shared_name): Use incoming char * parameter instead of local static buffer. (open_shared): Accomodate new calling convention for shared_name. * exceptions.cc (events_init): Ditto. * sigproc.cc (getsem): Ditto. * syscalls.cc (login): Ditto. (logout): Ditto. (pututline): Ditto.
Diffstat (limited to 'winsup/cygwin/shared_info.h')
-rw-r--r--winsup/cygwin/shared_info.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/shared_info.h b/winsup/cygwin/shared_info.h
index 0156763e6..c9cf6a359 100644
--- a/winsup/cygwin/shared_info.h
+++ b/winsup/cygwin/shared_info.h
@@ -186,5 +186,5 @@ struct console_state
};
#endif
-char *__stdcall shared_name (const char *, int);
+char *__stdcall shared_name (char *, const char *, int);
void *__stdcall open_shared (const char *name, int n, HANDLE &shared_h, DWORD size, shared_locations);