diff options
author | unknown <marko@hundin.mysql.fi> | 2004-02-20 16:34:09 +0200 |
---|---|---|
committer | unknown <marko@hundin.mysql.fi> | 2004-02-20 16:34:09 +0200 |
commit | 04a7c9ebe47fc34c53f531d99d69b85794e3f76c (patch) | |
tree | 96c04a7ccc804314e3737d02fc081513e1e827db /innobase/os | |
parent | 5a65021486c56d88705454c1fb377ac8ea4fa5de (diff) | |
download | mariadb-git-04a7c9ebe47fc34c53f531d99d69b85794e3f76c.tar.gz |
Many files:
Removed unused code
.del-os0trash.c~8cae5c1695501117:
Delete: innobase/os/os0trash.c
dict0crea.c:
Protect all sprintf(%s) with assertions
BitKeeper/deleted/.del-os0trash.c~8cae5c1695501117:
Delete: innobase/os/os0trash.c
innobase/btr/btr0sea.c:
Removed unused code
innobase/buf/buf0buf.c:
Removed unused code
innobase/com/com0shm.c:
Removed unused code
innobase/data/data0data.c:
Removed unused code
innobase/dict/dict0crea.c:
Removed unused code
innobase/fsp/fsp0fsp.c:
Removed unused code
innobase/ha/ha0ha.c:
Removed unused code
innobase/include/btr0cur.h:
Removed unused code
innobase/include/btr0sea.h:
Removed unused code
innobase/include/buf0buf.ic:
Removed unused code
innobase/include/data0data.h:
Removed unused code
innobase/include/dict0crea.h:
Removed unused code
innobase/include/dict0dict.h:
Removed unused code
innobase/include/ibuf0ibuf.h:
Removed unused code
innobase/include/lock0lock.h:
Removed unused code
innobase/include/mem0dbg.h:
Removed unused code
innobase/include/mem0mem.ic:
Removed unused code
innobase/include/mtr0log.h:
Removed unused code
innobase/include/mtr0mtr.h:
Removed unused code
innobase/include/os0proc.h:
Removed unused code
innobase/include/os0thread.h:
Removed unused code
innobase/include/rem0cmp.ic:
Removed unused code
innobase/include/row0row.h:
Removed unused code
innobase/include/srv0srv.h:
Removed unused code
innobase/include/sync0sync.h:
Removed unused code
innobase/lock/lock0lock.c:
Removed unused code
innobase/log/log0recv.c:
Removed unused code
innobase/mem/mem0dbg.c:
Removed unused code
innobase/mtr/mtr0mtr.c:
Removed unused code
innobase/os/os0proc.c:
Removed unused code
innobase/page/page0page.c:
Removed unused code
innobase/que/que0que.c:
Removed unused code
innobase/rem/rem0cmp.c:
Removed unused code
innobase/row/row0ins.c:
Removed unused code
innobase/row/row0mysql.c:
Removed unused code
innobase/row/row0row.c:
Removed unused code
innobase/srv/srv0srv.c:
Removed unused code
innobase/srv/srv0start.c:
Removed unused code
innobase/sync/sync0sync.c:
Removed unused code
innobase/trx/trx0rec.c:
Removed unused code
innobase/trx/trx0trx.c:
Removed unused code
innobase/ut/ut0dbg.c:
Removed unused code
innobase/ut/ut0mem.c:
Removed unused code
innobase/ut/ut0ut.c:
Removed unused code
Diffstat (limited to 'innobase/os')
-rw-r--r-- | innobase/os/os0proc.c | 77 | ||||
-rw-r--r-- | innobase/os/os0trash.c | 43 |
2 files changed, 0 insertions, 120 deletions
diff --git a/innobase/os/os0proc.c b/innobase/os/os0proc.c index 1ee448a4a44..2099d62e7fd 100644 --- a/innobase/os/os0proc.c +++ b/innobase/os/os0proc.c @@ -57,83 +57,6 @@ os_mem_alloc_nocache( #endif } -#ifdef notdefined -/******************************************************************** -Creates a new process. */ - -ibool -os_process_create( -/*==============*/ - char* name, /* in: name of the executable to start - or its full path name */ - char* cmd, /* in: command line for the starting - process, or NULL if no command line - specified */ - os_process_t* proc, /* out: handle to the process */ - os_process_id_t* id) /* out: process id */ - -{ - BOOL ret; - PROCESS_INFORMATION pinfo; - STARTUPINFO sinfo; - - /* The following assignments are default for the startupinfo - structure */ - sinfo.cb = sizeof(STARTUPINFO); - sinfo.lpReserved = NULL; - sinfo.lpDesktop = NULL; - sinfo.cbReserved2 = 0; - sinfo.lpReserved = NULL; - - ret = CreateProcess(name, - cmd, - NULL, /* No security attributes */ - NULL, /* No thread security attrs */ - FALSE, /* Do not inherit handles */ - 0, /* No creation flags */ - NULL, /* No environment */ - NULL, /* Same current directory */ - &sinfo, - &pinfo); - - *proc = pinfo.hProcess; - *id = pinfo.dwProcessId; - - return(ret); -} - -/************************************************************************** -Exits a process. */ - -void -os_process_exit( -/*============*/ - ulint code) /* in: exit code */ -{ - ExitProcess((UINT)code); -} - -/************************************************************************** -Gets a process exit code. */ - -ibool -os_process_get_exit_code( -/*=====================*/ - /* out: TRUE if succeed, FALSE if fail */ - os_process_t proc, /* in: handle to the process */ - ulint* code) /* out: exit code */ -{ - DWORD ex_code; - BOOL ret; - - ret = GetExitCodeProcess(proc, &ex_code); - - *code = (ulint)ex_code; - - return(ret); -} -#endif /* notdedfined */ - /******************************************************************** Sets the priority boost for threads released from waiting within the current process. */ diff --git a/innobase/os/os0trash.c b/innobase/os/os0trash.c deleted file mode 100644 index e896ac9f083..00000000000 --- a/innobase/os/os0trash.c +++ /dev/null @@ -1,43 +0,0 @@ -/* Stores the old console mode when echo is turned off */ -ulint os_old_console_mode; - -/******************************************************************** -Turns off echo from console input. */ - -void -os_console_echo_off(void) -/*=====================*/ -{ - GetConsoleMode(stdio, &os_old_console_mode); - SetConsoleMode(stdio, ENABLE_PROCESSED_INPUT); -} - -/******************************************************************** -Turns on echo in console input. */ - -void -os_console_echo_on(void) -/*====================*/ -{ - SetConsoleMode(stdio, &os_old_console_mode); -} - -/******************************************************************** -Reads a character from the console. */ - -char -os_read_console(void) -/*=================*/ -{ - char input_char; - ulint n_chars; - - n_chars = 0; - - while (n_chars == 0) { - ReadConsole(stdio, &input_char, 1, &n_chars, NULL); - } - - return(input_char); -} - |