From: Vincent Pit Date: Sat, 7 Mar 2009 12:34:13 +0000 (+0100) Subject: Add a disclaimer to ptable.h X-Git-Tag: v0.04~2 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=commitdiff_plain;h=99eb2ccae4e9aee5fa8996755211028b9934722b Add a disclaimer to ptable.h --- diff --git a/ptable.h b/ptable.h index 70d1b88..5cd5a90 100644 --- a/ptable.h +++ b/ptable.h @@ -1,3 +1,11 @@ +/* This file is part of the Lexical-Types Perl module. + * See http://search.cpan.org/dist/Lexical-Types/ */ + +/* This is a pointer table implementation essentially copied from the ptr_table + * implementation in perl's sv.c, except that it has been modified to use memory + * shared across threads. + * Copyright goes to the original authors, bug reports to me. */ + typedef struct ptable_ent { struct ptable_ent *next; const void * key;