summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/slang/sllimits.h
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2005-09-02 22:32:32 +0000
committerMystery Man <unknown@mandriva.org>2005-09-02 22:32:32 +0000
commitbd9ae60ea7df3a2dc09798ea1cba6f55f2c3f0e4 (patch)
tree7a03e33fba584c7014f990f1448a337627d50484 /mdk-stage1/slang/sllimits.h
parent4da1048be0a7528a1a9f55e6f87cb2766508473b (diff)
downloaddrakx-backup-do-not-use-bd9ae60ea7df3a2dc09798ea1cba6f55f2c3f0e4.tar
drakx-backup-do-not-use-bd9ae60ea7df3a2dc09798ea1cba6f55f2c3f0e4.tar.gz
drakx-backup-do-not-use-bd9ae60ea7df3a2dc09798ea1cba6f55f2c3f0e4.tar.bz2
drakx-backup-do-not-use-bd9ae60ea7df3a2dc09798ea1cba6f55f2c3f0e4.tar.xz
drakx-backup-do-not-use-bd9ae60ea7df3a2dc09798ea1cba6f55f2c3f0e4.zip
This commit was manufactured by cvs2svn to create tagV10_3_0_53mdk
'V10_3_0_53mdk'.
Diffstat (limited to 'mdk-stage1/slang/sllimits.h')
-rw-r--r--mdk-stage1/slang/sllimits.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/mdk-stage1/slang/sllimits.h b/mdk-stage1/slang/sllimits.h
deleted file mode 100644
index c4ae03b83..000000000
--- a/mdk-stage1/slang/sllimits.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/* Copyright (c) 1998, 1999, 2001 John E. Davis
- * This file is part of the S-Lang library.
- *
- * You may distribute under the terms of either the GNU General Public
- * License or the Perl Artistic License.
- */
-/* sllimits.h */
-
-/* slstring.c: Size of the hash table used for strings (prime numbers) */
-#ifdef __MSDOS_16BIT__
-# define SLSTRING_HASH_TABLE_SIZE 601
-# define SLASSOC_HASH_TABLE_SIZE 601
-#else
-# define SLSTRING_HASH_TABLE_SIZE 2909
-# define SLASSOC_HASH_TABLE_SIZE 2909
-#endif
-
-/* slang.c: maximum size of run time stack */
-#ifdef __MSDOS_16BIT__
-# define SLANG_MAX_STACK_LEN 500
-#else
-# define SLANG_MAX_STACK_LEN 2500
-#endif
-
-/* slang.c: This sets the size on the depth of function calls */
-#ifdef __MSDOS_16BIT__
-# define SLANG_MAX_RECURSIVE_DEPTH 50
-#else
-# define SLANG_MAX_RECURSIVE_DEPTH 250
-#endif
-
-/* slang.c: Size of the stack used for local variables */
-#ifdef __MSDOS_16BIT__
-# define SLANG_MAX_LOCAL_STACK 200
-#else
-# define SLANG_MAX_LOCAL_STACK 1024
-#endif
-
-/* slang.c: The size of the hash table used for local and global objects.
- * These should be prime numbers.
- */
-#define SLGLOBALS_HASH_TABLE_SIZE 2909
-#define SLLOCALS_HASH_TABLE_SIZE 73
-#define SLSTATIC_HASH_TABLE_SIZE 73
-
-/* Size of the keyboard buffer use by the ungetkey routines */
-#ifdef __MSDOS_16BIT__
-# define SL_MAX_INPUT_BUFFER_LEN 40
-#else
-# define SL_MAX_INPUT_BUFFER_LEN 1024
-#endif
-
-/* Maximum number of nested switch statements */
-#define SLANG_MAX_NESTED_SWITCH 10
-
-/* Size of the block stack (used in byte-compiling) */
-#define SLANG_MAX_BLOCK_STACK_LEN 50
-
-/* slfile.c: Max number of open file pointers */
-#ifdef __MSDOS_16BIT__
-# define SL_MAX_FILES 32
-#else
-# define SL_MAX_FILES 256
-#endif