This commit is contained in:
hyung-hwan 2008-05-25 07:05:11 +00:00
parent c25ce3192a
commit e6d55b0287
4 changed files with 58 additions and 2 deletions

3
ase/configure vendored
View File

@ -26631,7 +26631,7 @@ CJFLAGS=$CJFLAGS
BUILD_CJ=$BUILD_CJ
ac_config_files="$ac_config_files makefile cmn/makefile awk/makefile lsp/makefile utl/makefile cmd/awk/makefile cmd/lsp/makefile"
ac_config_files="$ac_config_files makefile cmn/makefile awk/makefile lsp/makefile tgp/makefile utl/makefile cmd/awk/makefile cmd/lsp/makefile"
cat >confcache <<\_ACEOF
# This file is a shell script that caches the results of configure
@ -27190,6 +27190,7 @@ do
"cmn/makefile") CONFIG_FILES="$CONFIG_FILES cmn/makefile" ;;
"awk/makefile") CONFIG_FILES="$CONFIG_FILES awk/makefile" ;;
"lsp/makefile") CONFIG_FILES="$CONFIG_FILES lsp/makefile" ;;
"tgp/makefile") CONFIG_FILES="$CONFIG_FILES tgp/makefile" ;;
"utl/makefile") CONFIG_FILES="$CONFIG_FILES utl/makefile" ;;
"cmd/awk/makefile") CONFIG_FILES="$CONFIG_FILES cmd/awk/makefile" ;;
"cmd/lsp/makefile") CONFIG_FILES="$CONFIG_FILES cmd/lsp/makefile" ;;

View File

@ -248,5 +248,5 @@ AC_SUBST(BUILD_JNI, $BUILD_JNI)
AC_SUBST(CJFLAGS, $CJFLAGS)
AC_SUBST(BUILD_CJ, $BUILD_CJ)
AC_CONFIG_FILES([makefile cmn/makefile awk/makefile lsp/makefile utl/makefile cmd/awk/makefile cmd/lsp/makefile])
AC_CONFIG_FILES([makefile cmn/makefile awk/makefile lsp/makefile tgp/makefile utl/makefile cmd/awk/makefile cmd/lsp/makefile])
AC_OUTPUT

35
ase/tgp/tgp.c Normal file
View File

@ -0,0 +1,35 @@
/*
* $Id$
*/
#include <ase/tgp/tgp.h>
#include <ase/cmn/mem.h>
struct ase_tgp_t
{
ase_mmgr_t mmgr;
};
ase_tgp_t* ase_tgp_open (ase_mmgr_t* mmgr)
{
ase_tgp_t* tgp;
if (mmgr == ASE_NULL) mmgr = ase_get_mmgr ();
ASE_ASSERT (mmgr != ASE_NULL);
tgp = ASE_MALLOC (mmgr, ASE_SIZEOF(*tgp));
if (tgp == ASE_NULL) return ASE_NULL;
ase_memset (tgp, 0, ASE_SIZEOF(*tgp));
ase_memcpy (&tgp->mmgr, mmgr, ASE_SIZEOF(*mmgr));
return tgp;
}
void ase_tgp_close (ase_tgp_t* tgp)
{
ASE_FREE (&tgp->mmgr, tgp);
}

20
ase/tgp/tgp.h Normal file
View File

@ -0,0 +1,20 @@
#ifndef _ASE_TGP_H_
#define _ASE_TGP_H_
#include <ase/cmn/types.h>
#include <ase/cmn/macros.h>
typedef struct ase_tgp_t ase_tgp_t;
#ifdef __cplusplus
extern "C" {
#endif
ase_tgp_t* ase_tgp_open (ase_mmgr_t* mmgr);
void ase_tgp_close (ase_tgp_t* tgp);
#ifdef __cplusplus
}
#endif
#endif