1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems, Inc.
4
* Copyright (C) 2008 Sun Microsystems
6
6
* This program is free software; you can redistribute it and/or modify
7
7
* it under the terms of the GNU General Public License as published by
17
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#include "drizzled/internal/my_sys.h"
20
#include <drizzled/global.h>
21
#include <mysys/my_sys.h>
22
22
#include <drizzled/definitions.h>
23
23
#include <drizzled/session.h>
24
24
#include <drizzled/error.h>
25
25
#include <drizzled/check_stack_overrun.h>
30
27
/****************************************************************************
31
28
Check stack size; Send error if there isn't enough stack to continue
32
29
****************************************************************************/
33
#if defined(STACK_DIRECTION) && (STACK_DIRECTION < 0)
34
static const bool stack_direction_negative = true;
30
#if STACK_DIRECTION < 0
31
#define used_stack(A,B) (long) (A - B)
36
static const bool stack_direction_negative = false;
33
#define used_stack(A,B) (long) (B - A)
39
template <typename A_T, typename B_T>
40
inline static long used_stack(A_T A, B_T B)
42
if (stack_direction_negative)
43
return (long) (A - B);
45
return (long) (B - A);
48
36
extern size_t my_thread_stack_size;
50
38
bool check_stack_overrun(Session *session, long margin, void *)
41
assert(session == current_session);
53
42
if ((stack_used=used_stack(session->thread_stack,(char*) &stack_used)) >=
54
43
(long) (my_thread_stack_size - margin))