summaryrefslogtreecommitdiff
path: root/proto.h
Commit message (Collapse)AuthorAgeFilesLines
* It could be possible for the case-insensitiveJarkko Hietaniemi2001-12-131-1/+1
| | | | | | Unicode-aware string comparison to wander off to the la-la land. p4raw-id: //depot/perl@13669
* Re: attributes are brokenSpider Boardman2001-12-091-2/+3
| | | | | Message-Id: <200112090509.AAA02053@Orb.Nashua.NH.US> p4raw-id: //depot/perl@13543
* Make sharepvn a macro since all it does is a deref.Jarkko Hietaniemi2001-12-031-1/+0
| | | p4raw-id: //depot/perl@13436
* More forgotten checkins.Jarkko Hietaniemi2001-11-301-0/+1
| | | p4raw-id: //depot/perl@13377
* Make to Unicode character functions to use UVsJarkko Hietaniemi2001-11-301-31/+31
| | | | | instead of U32s and add to_uni_fold(). p4raw-id: //depot/perl@13374
* Fix for "a\x{100}" =~ /A/i.Jarkko Hietaniemi2001-11-281-0/+1
| | | p4raw-id: //depot/perl@13332
* regen_headers.Jarkko Hietaniemi2001-11-231-0/+1
| | | p4raw-id: //depot/perl@13197
* Implement the sort pragma. Split sort code from pp_ctl.cJarkko Hietaniemi2001-11-211-1/+0
| | | | | | | | | | to pp_sort.c. Includes the quicksort stabilizing layer from John P. Linderman. -Msort=qsort or -Msort=fast is faster than without (or with -Msort=mergesort or -Msort=safe) for short random inputs, but for some reason not quite as fast as 5.6.1 qsort. More benchmarking, profiling, tuning, and optimizing definitely needed. p4raw-id: //depot/perl@13179
* The _uni_display should not be in dump.c since theyJarkko Hietaniemi2001-11-191-2/+2
| | | | | are used under normal operation (S_not_a_number()). p4raw-id: //depot/perl@13099
* runtime runops switchIlya Zakharevich2001-11-161-3/+1
| | | | | Message-ID: <20011116004809.A934@math.ohio-state.edu> p4raw-id: //depot/perl@13044
* v-strings as Objects Step 1John Peacock2001-11-151-0/+1
| | | | | Message-ID: <3BF3FE30.70D7EDCA@rowman.com> p4raw-id: //depot/perl@13028
* -s on #! line Rafael Garcia-Suarez2001-11-081-0/+1
| | | | | Message-ID: <20011107222339.E729@rafael> p4raw-id: //depot/perl@12900
* ... and the proto to go with #12865.Jarkko Hietaniemi2001-11-061-0/+1
| | | p4raw-id: //depot/perl@12866
* Forgot new proto.Jarkko Hietaniemi2001-10-311-1/+1
| | | p4raw-id: //depot/perl@12787
* Make sv_recode_to_utf8() a real API: the encodingJarkko Hietaniemi2001-10-311-1/+1
| | | | | | is a parameter, instead of a global. Document the PERL_ENCODING. p4raw-id: //depot/perl@12783
* Enable -Mencoding=foobar also for string literals.Jarkko Hietaniemi2001-10-311-0/+1
| | | p4raw-id: //depot/perl@12782
* Rewrite sv_uni_display() as pv_uni_display() asJarkko Hietaniemi2001-10-241-0/+1
| | | | | reimplement sv_uni_display() using that. p4raw-id: //depot/perl@12619
* sv_uni_display(): do not add the "...", let the callerJarkko Hietaniemi2001-10-231-1/+1
| | | | | do it if wanted, and be prepared for more display options. p4raw-id: //depot/perl@12612
* Implement multicharacter case mappings where a singleJarkko Hietaniemi2001-10-211-0/+1
| | | | | Unicode character can be mapped into several. p4raw-id: //depot/perl@12546
* Add a new flag character 'm' to embed.pl set to representNick Ing-Simmons2001-10-201-6/+6
| | | | | | | "functions" which are really macros. Use it foe the troublesome sv_setsv() etc. macros in sv.h - changing latter to define sv_setsv rather than sv_setsv_macro etc. p4raw-id: //depot/perlio@12524
* Skeleton of "PerlIO_dup" coded.Nick Ing-Simmons2001-10-161-9/+9
| | | | | Still-passes all tests non-threaded (well it would wouldn't it!) p4raw-id: //depot/perlio@12451
* Make the toupper/lower/title API for Unicode not rightJarkko Hietaniemi2001-10-091-9/+6
| | | | | | but at least less wrong: prepare for the mapping being more than just one-character-to-one-character. p4raw-id: //depot/perl@12371
* Patch to put qsortsv in the public APIBrian Ingerson2001-09-301-1/+1
| | | | | Message-ID: <20010929174113.A30223@ttul.org> p4raw-id: //depot/perl@12276
* Dump SvUTF8(sv)s also as \x{...}.Jarkko Hietaniemi2001-09-271-1/+2
| | | | | TODO: dump the SvUTF8() hash keys similarly. p4raw-id: //depot/perl@12243
* Do what perl_clone() does for sharedsv functions.Abhijit Menon-Sen2001-09-221-1/+1
| | | p4raw-id: //depot/perl@12139
* More cleanups. (What's PERL_DECL_PROT?)Abhijit Menon-Sen2001-09-221-1/+1
| | | p4raw-id: //depot/perl@12137
* Regen headers.Jarkko Hietaniemi2001-09-131-2/+2
| | | p4raw-id: //depot/perl@12009
* Re: [ID 20010810.011] 'use v2b' not allowed with strictRafael Garcia-Suarez2001-09-091-1/+1
| | | | | | Message-ID: <20010813225159.C6681@rafael> (Applied with several tweaks.) p4raw-id: //depot/perl@11966
* Re: [ID 20010825.006] -DCRIPPLED_CC is brokenNicholas Clark2001-09-051-0/+1
| | | | | Message-ID: <20010905205424.C25120@plum.flirble.org> p4raw-id: //depot/perl@11892
* oct and hex in glorious 64 bit (with less bugs) (was Re: hex and oct again ↵Nicholas Clark2001-09-051-0/+3
| | | | | | | (was Re: FreeBSD MD5 crypt? Re: crypt/hex/oct and Unicode?)) Message-ID: <20010904224250.P25120@plum.flirble.org> p4raw-id: //depot/perl@11874
* remove deprecated PERL_OBJECT cruft, it has long since stoppedGurusamy Sarathy2001-08-311-33/+0
| | | | | working in 5.7.x p4raw-id: //depot/perl@11803
* Removed tripple definitions of CUSTOM_OP functions.Artur Bergman2001-08-271-8/+0
| | | p4raw-id: //depot/perl@11761
* Regen headersArtur Bergman2001-08-271-0/+12
| | | p4raw-id: //depot/perl@11760
* Changes USE_THREADS to USE_5005THREADS in the entire source.Artur Bergman2001-08-271-7/+7
| | | | | | Thanks to H. Merijn Brand for the patch. Some of the comments and or guards might be removable in perl.h now. p4raw-id: //depot/perl@11758
* Adds PERL_EXIT_DESTRUCT_END to PL_exit_flags which if set moves END block ↵Artur Bergman2001-08-171-1/+1
| | | | | running to perl_destruct, changes prototype of perl_destruct to return exitstatus. p4raw-id: //depot/perl@11702
* [PATHC] sharedsv.[c|h]Jarkko Hietaniemi2001-08-131-0/+11
| | | | | | | | | | | | | | | | | | | | | | From: "Artur Bergman" <artur@contiller.se> Date: Mon, 13 Aug 2001 14:38:41 +0200 Message-ID: <005401c123f4$e1f53360$21000a0a@vogw2kdev> Subject: [PATCH] embed.pl From: Arthur Bergman <arthur@contiller.se> Date: Mon, 13 Aug 2001 14:38:14 +0200 Message-ID: <B79D96D6.3088%arthur@contiller.se> Subject: [PATCH] sharedsv cleanups From: "Arthur Bergman" <arthur@contiller.se> Date: Mon, 13 Aug 2001 15:14:25 +0200 Message-ID: <005a01c123f9$dfe525d0$21000a0a@vogw2kdev> Plus few tweaks: _init needs to be Adp, the prototypes should not be revealed unless using ithreads, #endif FOO must be #endif /* FOO */, adding (parentheses) around do { } while doesn't work too well. p4raw-id: //depot/perl@11659
* Make perl fork()-safe (in a slightly limited way) even onGurusamy Sarathy2001-07-201-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | platforms that don't have pthread_atfork() (extension of the fix in change#11151). Note that this will not help extensions that call fork() directly in C, or that link to libraries that call fork() directly. Such cases must be fixed to either call PerlProc_fork(), or call atfork_lock() in parent before the calling the function that forks and call atfork_unlock() in both parent and child immediately after the fork(). (There are no worries if C code calls exec() in the child immediately after a fork(). Only cases where the child calls perl's API functions (including New()) after the fork() are problematic.) This change also eliminates the use of vfork() from perl, since all such uses were violating the severe restrictions on modifying the state of the process between the vfork() and the exec(). This is a modified version of patches suggested by Abhijit Menon-Sen and Richard Soderberg. p4raw-link: @11151 on //depot/perl: 50dd6e574ff39b609595ddb16b2fe9f625a26f8c p4raw-id: //depot/perl@11423
* Perl_re_dup()Abhijit Menon-Sen2001-07-121-1/+2
| | | | | Message-ID: <20010712235432.J24707@lustre.dyn.wiw.org> p4raw-id: //depot/perl@11321
* Retract #11289.Jarkko Hietaniemi2001-07-121-2/+0
| | | p4raw-id: //depot/perl@11293
* (Retracted by #11289.)Jarkko Hietaniemi2001-07-121-0/+2
| | | p4raw-id: //depot/perl@11289
* Simplify yytoke()Simon Cozens2001-07-081-0/+1
| | | | | | | Message-ID: <20010708132434.A9448@deep-dark-truthful-mirror> Split out pending_ident(). p4raw-id: //depot/perl@11213
* fix the binary compatibility issue when building with/withoutGurusamy Sarathy2001-07-051-1/+1
| | | | | | | | | | usemymalloc by exporting Perl_malloc() et al as simple wrappers around the system functions (this allows most extensions built using one mode to coexist with perls built in the other mode) XXX the Perl_mfree() wrapper might need to do return(free()) on platforms where Free_t isn't "void" p4raw-id: //depot/perl@11152
* rename s/sv_getcwd/getcwd_sv/ for better conformance to existingGurusamy Sarathy2001-07-021-1/+1
| | | | | | | | | | naming discipline win32 fix: enable getcwd_sv() to work on windows (POSIX.t was failing because of this) fix a warning about "fd" being used without being set in Cwd.xs p4raw-id: //depot/perl@11067
* Enclose the new symbols in START_EXTERN_C and END_EXTERN_CJarkko Hietaniemi2001-06-251-0/+6
| | | | | for the benefit of C++ compilers, as suggested by Guruprasad. p4raw-id: //depot/perl@10928
* Retract the #10417 mg.c and embed.pl parts because ofJarkko Hietaniemi2001-06-211-2/+2
| | | | | | strange SEGVs in 64bit x86 FreeBSD observed by Nicholas Clark. p4raw-id: //depot/perl@10798
* Regen headers.Jarkko Hietaniemi2001-06-201-7/+7
| | | p4raw-id: //depot/perl@10758
* Replace our implementation of realpath() with OpenBSD'sJarkko Hietaniemi2001-06-201-1/+0
| | | | | (src/lib/libc/stdlib/realpath.c 1.4). p4raw-id: //depot/perl@10750
* No point in going into memory-saving contortionsJarkko Hietaniemi2001-06-201-1/+1
| | | | | | | with getcwd() since there's a danger of buffer overflow. Also make the POSIX extension to use sv_getcwd(). Finally, a missed proto.h fragment. p4raw-id: //depot/perl@10748
* Split off the pack/unpack code, from Nicholas Clark.Jarkko Hietaniemi2001-06-181-1/+4
| | | p4raw-id: //depot/perl@10685
* Generated filesNick Ing-Simmons2001-06-151-0/+1
| | | p4raw-id: //depot/perlio@10619