From 69533d841bd94ae5fcd10b98bcd3de9e9a8c3985 Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Fri, 3 Dec 2010 15:56:32 -0800 Subject: [PATCH] Document interpreter flags in docs/embed.pod --- docs/embed.pod | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/docs/embed.pod b/docs/embed.pod index 99cd35273f..9082c0f759 100644 --- a/docs/embed.pod +++ b/docs/embed.pod @@ -148,24 +148,39 @@ flags include: =item PARROT_NO_FLAGS +The default. No flags. + =item PARROT_BOUNDS_FLAG +True if byte code bounds should be tracked. + =item PARROT_GC_DEBUG_FLAG +True if debugging memory management. + =item PARROT_EXTERN_CODE_FLAG +True if reusing another interpreters code. + =item PARROT_DESTROY_FLAG +True if the last interpreter shall cleanup. + =item PARROT_IS_THREAD +True if interpreter is a thread. + =item PARROT_THR_COPY_INTERP +True if thread start copies interpreter state. + =item PARROT_THR_THREAD_POOL +True if type3 threads are being used. + =back -See F for the definition of these flags (TODO: document flag -definitions here). +These are defined in F. =item C