1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Objective Caml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy and Damien Doligez, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../LICENSE. */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
#ifndef _alloc_
|
|
|
|
#define _alloc_
|
|
|
|
|
|
|
|
|
|
|
|
#include "misc.h"
|
|
|
|
#include "mlvalues.h"
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLextern value alloc (mlsize_t, tag_t);
|
|
|
|
CAMLextern value alloc_small (mlsize_t, tag_t);
|
|
|
|
CAMLextern value alloc_tuple (mlsize_t);
|
2002-11-04 05:58:10 -08:00
|
|
|
CAMLextern value alloc_string (mlsize_t); /* size in bytes */
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLextern value copy_string (char const *);
|
|
|
|
CAMLextern value copy_string_array (char const **);
|
|
|
|
CAMLextern value copy_double (double);
|
|
|
|
CAMLextern value copy_int32 (int32); /* defined in [ints.c] */
|
|
|
|
CAMLextern value copy_int64 (int64); /* defined in [ints.c] */
|
|
|
|
CAMLextern value copy_nativeint (long); /* defined in [ints.c] */
|
|
|
|
CAMLextern value alloc_array (value (*funct) (char const *),
|
|
|
|
char const ** array);
|
1995-05-04 03:15:53 -07:00
|
|
|
|
2000-02-10 06:04:59 -08:00
|
|
|
typedef void (*final_fun)(value);
|
2002-11-04 05:58:10 -08:00
|
|
|
CAMLextern value alloc_final (mlsize_t, /*size in words*/
|
2001-08-28 07:47:48 -07:00
|
|
|
final_fun, /*finalization function*/
|
|
|
|
mlsize_t, /*resources consumed*/
|
|
|
|
mlsize_t /*max resources*/);
|
2000-02-10 06:04:59 -08:00
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLextern int convert_flag_list (value, int *);
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
#endif /* _alloc_ */
|