diff options
author | unknown <marko@hundin.mysql.fi> | 2004-02-19 14:37:39 +0200 |
---|---|---|
committer | unknown <marko@hundin.mysql.fi> | 2004-02-19 14:37:39 +0200 |
commit | 731fd9c5e049d152f3f08967e3730bd16027a834 (patch) | |
tree | 5f0c934534bbc8a4f473a6561d8e43043f469049 /innobase/include/usr0sess.h | |
parent | f509ce23d6967d72add3169496acdbe5bf752061 (diff) | |
download | mariadb-git-731fd9c5e049d152f3f08967e3730bd16027a834.tar.gz |
Remove unnecessary files and functions
innobase/srv/srv0srv.c:
Removed unused code
BitKeeper/deleted/.del-FSP0FSP.C~f1c7e596cadd429:
Delete: innobase/fsp/trash/FSP0FSP.C
BitKeeper/deleted/.del-log0trsh.c~ebdd6ce463d8bf0:
Delete: innobase/log/trash/log0trsh.c
BitKeeper/deleted/.del-os0fileold.c~7be518438162e2f:
Delete: innobase/os/os0fileold.c
innobase/include/usr0sess.h:
Remove unused functions
innobase/lock/lock0lock.c:
Remove commented-out call to deleted function sess_raise_error_low()
innobase/trx/trx0trx.c:
Remove commented-out or unreachable calls to deleted function sess_raise_error_low()
innobase/usr/usr0sess.c:
Remove unused functions
Diffstat (limited to 'innobase/include/usr0sess.h')
-rw-r--r-- | innobase/include/usr0sess.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/innobase/include/usr0sess.h b/innobase/include/usr0sess.h index 365f828ecfc..e277d801672 100644 --- a/innobase/include/usr0sess.h +++ b/innobase/include/usr0sess.h @@ -66,28 +66,6 @@ sess_open( byte* addr_buf, /* in: client address */ ulint addr_len); /* in: client address length */ /************************************************************************* -Closes a session, freeing the memory occupied by it. */ - -void -sess_close( -/*=======*/ - sess_t* sess); /* in, own: session object */ -/************************************************************************* -Raises an SQL error. */ - -void -sess_raise_error_low( -/*=================*/ - trx_t* trx, /* in: transaction */ - ulint err_no, /* in: error number */ - ulint type, /* in: more info of the error, or 0 */ - dict_table_t* table, /* in: dictionary table or NULL */ - dict_index_t* index, /* in: table index or NULL */ - dtuple_t* tuple, /* in: tuple to insert or NULL */ - rec_t* rec, /* in: record or NULL */ - char* err_str);/* in: arbitrary null-terminated error string, - or NULL */ -/************************************************************************* Closes a session, freeing the memory occupied by it, if it is in a state where it should be closed. */ @@ -117,16 +95,6 @@ sess_srv_msg_send_simple( ulint rel_kernel); /* in: SESS_RELEASE_KERNEL or SESS_NOT_RELEASE_KERNEL */ /*************************************************************************** -Processes a message from a client. NOTE: May release the kernel mutex -temporarily. */ - -void -sess_receive_msg_rel_kernel( -/*========================*/ - sess_t* sess, /* in: session */ - byte* str, /* in: message string */ - ulint len); /* in: message length */ -/*************************************************************************** When a command has been completed, this function sends the message about it to the client. */ @@ -136,17 +104,6 @@ sess_command_completed_message( sess_t* sess, /* in: session */ byte* msg, /* in: message buffer */ ulint len); /* in: message data length */ -/*********************************************************************** -Starts a new connection and a session, or starts a query based on a client -message. This is called by a SRV_COM thread. */ - -void -sess_process_cli_msg( -/*=================*/ - byte* str, /* in: message string */ - ulint len, /* in: string length */ - byte* addr, /* in: address string */ - ulint alen); /* in: address length */ /* The session handle. All fields are protected by the kernel mutex */ |