ARGOBOTS  dce6e727ffc4ca5b3ffc04cb9517c6689be51ec5
local.c
Go to the documentation of this file.
1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
2 /*
3  * See COPYRIGHT in top-level directory.
4  */
5 
6 #include "abti.h"
7 
8 static ABTI_local *local_get_local_internal(void)
9 {
10  return lp_ABTI_local;
11 }
12 
13 static void local_set_xstream_internal(ABTI_xstream *p_local_xstream)
14 {
15  lp_ABTI_local = (ABTI_local *)p_local_xstream;
16 }
17 
18 static void *local_get_local_ptr_internal(void)
19 {
20  return (void *)&lp_ABTI_local;
21 }
22 
23 ABTI_local_func gp_ABTI_local_func = { { 0 },
27  { 0 } };
28 /* ES Local Data */
29 ABTD_XSTREAM_LOCAL ABTI_local *lp_ABTI_local = NULL;
abti.h
local_set_xstream_internal
static void local_set_xstream_internal(ABTI_xstream *p_local_xstream)
Definition: local.c:13
local_get_local_internal
static ABTI_local * local_get_local_internal(void)
Definition: local.c:8
local_get_local_ptr_internal
static void * local_get_local_ptr_internal(void)
Definition: local.c:18
lp_ABTI_local
ABTD_XSTREAM_LOCAL ABTI_local * lp_ABTI_local
Definition: local.c:29
gp_ABTI_local_func
ABTI_local_func gp_ABTI_local_func
Definition: local.c:23