mariadb/innobase/usr/usr0sess.c

87 lines
1.7 KiB
C
Raw Normal View History

2001-02-17 14:19:19 +02:00
/******************************************************
Sessions
(c) 1996 Innobase Oy
Created 6/25/1996 Heikki Tuuri
*******************************************************/
#include "usr0sess.h"
#ifdef UNIV_NONINL
#include "usr0sess.ic"
#endif
#include "trx0trx.h"
2004-02-19 14:37:39 +02:00
/*************************************************************************
Closes a session, freeing the memory occupied by it. */
static
void
sess_close(
/*=======*/
sess_t* sess); /* in, own: session object */
2001-02-17 14:19:19 +02:00
/*************************************************************************
Opens a session. */
sess_t*
2004-03-11 12:55:28 +02:00
sess_open(void)
/*===========*/
2001-02-17 14:19:19 +02:00
/* out, own: session object */
{
sess_t* sess;
2004-03-11 12:55:28 +02:00
#ifdef UNIV_SYNC_DEBUG
2001-02-17 14:19:19 +02:00
ut_ad(mutex_own(&kernel_mutex));
2004-03-11 12:55:28 +02:00
#endif /* UNIV_SYNC_DEBUG */
2001-02-17 14:19:19 +02:00
sess = mem_alloc(sizeof(sess_t));
sess->state = SESS_ACTIVE;
2001-02-17 14:19:19 +02:00
sess->trx = trx_create(sess);
UT_LIST_INIT(sess->graphs);
return(sess);
}
/*************************************************************************
Closes a session, freeing the memory occupied by it. */
2004-02-19 14:37:39 +02:00
static
2001-02-17 14:19:19 +02:00
void
sess_close(
/*=======*/
sess_t* sess) /* in, own: session object */
{
2004-03-11 12:55:28 +02:00
#ifdef UNIV_SYNC_DEBUG
2001-02-17 14:19:19 +02:00
ut_ad(mutex_own(&kernel_mutex));
2004-03-11 12:55:28 +02:00
#endif /* UNIV_SYNC_DEBUG */
2001-02-17 14:19:19 +02:00
ut_ad(sess->trx == NULL);
mem_free(sess);
}
/*************************************************************************
Closes a session, freeing the memory occupied by it, if it is in a state
where it should be closed. */
ibool
sess_try_close(
/*===========*/
/* out: TRUE if closed */
sess_t* sess) /* in, own: session object */
{
2004-03-11 12:55:28 +02:00
#ifdef UNIV_SYNC_DEBUG
2001-02-17 14:19:19 +02:00
ut_ad(mutex_own(&kernel_mutex));
2004-03-11 12:55:28 +02:00
#endif /* UNIV_SYNC_DEBUG */
if (UT_LIST_GET_LEN(sess->graphs) == 0) {
2001-02-17 14:19:19 +02:00
sess_close(sess);
return(TRUE);
}
return(FALSE);
}