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>2011-04-23 17:15:46 +0400
committerCorinna Vinschen <corinna@vinschen.de>2011-04-23 17:15:46 +0400
commitcca89be9ade65eacde6be3da6f93c06b3ed585b6 (patch)
tree2369b16cecf252c8eb39ce535fdb811ebd301ca2 /winsup/cygwin/registry.cc
parent8ba4144d501d622c5612417ef3c6929d47aa2f87 (diff)
* registry.cc (reg_key::get_dword): Rename from get_int, use DWORD
rather than int type. Avoid compiler warning. (reg_key::set_dword): Rename from set_int, use DWORD rather than int type. Change return type to NTSTATUS. (reg_key::get_string): Change return type to NTSTATUS. (reg_key::set_string): Ditto. * registry.h: Accommodate above changes. * environ.cc (regopt): Test return value of reg_key::get_string as NTSTATUS. * sched.cc (sched_rr_get_interval): Change local int vars to DWORD. Call reg_key::get_dword instead of reg_key::get_int. * shared.cc (init_installation_root): Test return value of reg_key::get_string as NTSTATUS. (shared_info::heap_slop_size): Call reg_key::get_dword rather than reg_key::get_int. (shared_info::heap_chunk_size): Ditto. * shared_info.h (CURR_SHARED_MAGIC): Update. (class shared_info): Change heap_chunk and heap_slop to DWORD values.
Diffstat (limited to 'winsup/cygwin/registry.cc')
-rw-r--r--winsup/cygwin/registry.cc31
1 files changed, 14 insertions, 17 deletions
diff --git a/winsup/cygwin/registry.cc b/winsup/cygwin/registry.cc
index 913f5d839..95abfe3cf 100644
--- a/winsup/cygwin/registry.cc
+++ b/winsup/cygwin/registry.cc
@@ -121,11 +121,11 @@ reg_key::build_reg (HKEY top, REGSAM access, va_list av)
}
}
-/* Given the current registry key, return the specific int value
+/* Given the current registry key, return the specific DWORD value
requested. Return def on failure. */
-int
-reg_key::get_int (PCWSTR name, int def)
+DWORD
+reg_key::get_dword (PCWSTR name, DWORD def)
{
if (key_is_invalid)
return def;
@@ -142,14 +142,14 @@ reg_key::get_int (PCWSTR name, int def)
size, &rsize);
if (status != STATUS_SUCCESS || vbuf->Type != REG_DWORD)
return def;
- DWORD dst = *(DWORD *) vbuf->Data;
- return (int) dst;
+ DWORD *dst = (DWORD *) vbuf->Data;
+ return *dst;
}
-/* Given the current registry key, set a specific int value. */
+/* Given the current registry key, set a specific DWORD value. */
-int
-reg_key::set_int (PCWSTR name, int val)
+NTSTATUS
+reg_key::set_dword (PCWSTR name, DWORD val)
{
if (key_is_invalid)
return key_is_invalid;
@@ -157,15 +157,13 @@ reg_key::set_int (PCWSTR name, int val)
DWORD value = (DWORD) val;
UNICODE_STRING uname;
RtlInitUnicodeString (&uname, name);
- NTSTATUS status = NtSetValueKey (key, &uname, 0, REG_DWORD,
- &value, sizeof (value));
- return (int) status;
+ return NtSetValueKey (key, &uname, 0, REG_DWORD, &value, sizeof (value));
}
/* Given the current registry key, return the specific string value
requested. Return zero on success, non-zero on failure. */
-int
+NTSTATUS
reg_key::get_string (PCWSTR name, PWCHAR dst, size_t max, PCWSTR def)
{
NTSTATUS status;
@@ -193,12 +191,12 @@ reg_key::get_string (PCWSTR name, PWCHAR dst, size_t max, PCWSTR def)
wcpncpy (dst, (PWCHAR) vbuf->Data, max);
}
- return (int) status;
+ return status;
}
/* Given the current registry key, set a specific string value. */
-int
+NTSTATUS
reg_key::set_string (PCWSTR name, PCWSTR src)
{
if (key_is_invalid)
@@ -206,9 +204,8 @@ reg_key::set_string (PCWSTR name, PCWSTR src)
UNICODE_STRING uname;
RtlInitUnicodeString (&uname, name);
- NTSTATUS status = NtSetValueKey (key, &uname, 0, REG_SZ, (PVOID) src,
- (wcslen (src) + 1) * sizeof (WCHAR));
- return (int) status;
+ return NtSetValueKey (key, &uname, 0, REG_SZ, (PVOID) src,
+ (wcslen (src) + 1) * sizeof (WCHAR));
}
reg_key::~reg_key ()