diff options
author | marko@hundin.mysql.fi <> | 2004-05-25 20:12:09 +0300 |
---|---|---|
committer | marko@hundin.mysql.fi <> | 2004-05-25 20:12:09 +0300 |
commit | 7ee9540976dd3130d575a1bb677ad13a4bb1b572 (patch) | |
tree | ec8991c7d93cafeed85b8b602f32fb9fcf134900 /innobase/include/que0que.h | |
parent | 03ade8c5892e8996af3a897a34a69a3ec7cfcc69 (diff) | |
download | mariadb-git-7ee9540976dd3130d575a1bb677ad13a4bb1b572.tar.gz |
InnoDB cleanup and possible bug-fix: Remove srv0que
Diffstat (limited to 'innobase/include/que0que.h')
-rw-r--r-- | innobase/include/que0que.h | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/innobase/include/que0que.h b/innobase/include/que0que.h index bcd7aed7e88..a438116781f 100644 --- a/innobase/include/que0que.h +++ b/innobase/include/que0que.h @@ -152,17 +152,6 @@ que_run_threads( /*============*/ que_thr_t* thr); /* in: query thread which is run initially */ /************************************************************************** -After signal handling is finished, returns control to a query graph error -handling routine. (Currently, just returns the control to the root of the -graph so that the graph can communicate an error message to the client.) */ - -void -que_fork_error_handle( -/*==================*/ - trx_t* trx, /* in: trx */ - que_t* fork); /* in: query graph which was run before signal - handling started, NULL not allowed */ -/************************************************************************** Handles an SQL error noticed during query thread execution. At the moment, does nothing! */ @@ -181,18 +170,15 @@ a single worker thread to execute it. This function should be used to end the wait state of a query thread waiting for a lock or a stored procedure completion. */ -void +que_thr_t* que_thr_end_wait( /*=============*/ - que_thr_t* thr, /* in: query thread in the + /* out: next query thread to run; + NULL if none */ + que_thr_t* thr); /* in: query thread in the QUE_THR_LOCK_WAIT, or QUE_THR_PROCEDURE_WAIT, or QUE_THR_SIG_REPLY_WAIT state */ - que_thr_t** next_thr); /* in/out: next query thread to run; - if the value which is passed in is - a pointer to a NULL pointer, then the - calling function can start running - a new query thread */ /************************************************************************** Same as que_thr_end_wait, but no parameter next_thr available. */ |