Commit 731fd9c5 authored by unknown's avatar unknown

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
parent f509ce23
This diff is collapsed.
...@@ -66,28 +66,6 @@ sess_open( ...@@ -66,28 +66,6 @@ sess_open(
byte* addr_buf, /* in: client address */ byte* addr_buf, /* in: client address */
ulint addr_len); /* in: client address length */ 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 Closes a session, freeing the memory occupied by it, if it is in a state
where it should be closed. */ where it should be closed. */
...@@ -117,16 +95,6 @@ sess_srv_msg_send_simple( ...@@ -117,16 +95,6 @@ sess_srv_msg_send_simple(
ulint rel_kernel); /* in: SESS_RELEASE_KERNEL or ulint rel_kernel); /* in: SESS_RELEASE_KERNEL or
SESS_NOT_RELEASE_KERNEL */ 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 When a command has been completed, this function sends the message about it
to the client. */ to the client. */
...@@ -136,17 +104,6 @@ sess_command_completed_message( ...@@ -136,17 +104,6 @@ sess_command_completed_message(
sess_t* sess, /* in: session */ sess_t* sess, /* in: session */
byte* msg, /* in: message buffer */ byte* msg, /* in: message buffer */
ulint len); /* in: message data length */ 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 */ /* The session handle. All fields are protected by the kernel mutex */
......
...@@ -3063,11 +3063,6 @@ lock_deadlock_occurs( ...@@ -3063,11 +3063,6 @@ lock_deadlock_occurs(
ut_a(strlen(lock_latest_err_buf) < 4100); ut_a(strlen(lock_latest_err_buf) < 4100);
/*
sess_raise_error_low(trx, DB_DEADLOCK, lock->type_mode, table,
index, NULL, NULL, NULL);
*/
return(TRUE); return(TRUE);
} }
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -1147,8 +1147,6 @@ trx_sig_send( ...@@ -1147,8 +1147,6 @@ trx_sig_send(
ut_a(0); ut_a(0);
/* sess_raise_error_low(trx, 0, 0, NULL, NULL, NULL, NULL,
"Incompatible signal"); */
return(FALSE); return(FALSE);
} }
...@@ -1197,9 +1195,6 @@ trx_sig_send( ...@@ -1197,9 +1195,6 @@ trx_sig_send(
in the error state: */ in the error state: */
ut_a(0); ut_a(0);
sess_raise_error_low(trx, 0, 0, NULL, NULL, NULL, NULL,
(char *) "Signal from another session, or a break execution signal");
} }
/* If there were no other signals ahead in the queue, try to start /* If there were no other signals ahead in the queue, try to start
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment