1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
|
2007-05-21 <joshua@always.joy.eth.net>
* Event is now stored in GIT. You can grab a copy with "git clone
git://nirmalvihar.info/home/joshua/event.git". I will not be
updating this ChangeLog anymore because the full history plus
changelog will be stored in GIT.
2006-10-11 <joshua@always.joy.eth.net>
* Add casts to quell warnings as suggested by JDHEDDEN@cpan.org.
2006-10-10 <joshua@always.joy.eth.net>
* Release 1.07.
* Marc Lehmann <schmorp@schmorp.de> suggests using mg_ptr instead
of mg_obj. Sounds good to me.
2005-05-14 <joshua@always.joy.eth.net>
* Release 1.06.
2005-05-09 <joshua@always.joy.eth.net>
* Fix 64 bit issue. Encouraged by Eric Rybski
<rybskej@yahoo.com>.
2005-04-23 <joshua@always.joy.eth.net>
* Release 1.05.
* Fix ancient memory leak in loop() noticed by Nikita Savin
<nik@asdfgroup.com>.
2005-03-29 <joshua@always.joy.eth.net>
* Release 1.04.
* Preliminary /dev/poll support from Michael Pergament
<ESeifert@t-online.de>. As of yet, there is no config test to
turn on this code. Patches welcome.
2005-01-31 <joshua@always.joy.eth.net>
* Release 1.03.
* Apply Win32 patch from Graciliano M. P. <gmpowers@terra.com.br>.
2004-12-08 <joshua@always.joy.eth.net>
* Release 1.02.
2004-12-08 Zefram <zefram@fysh.org>
* Generic watchers: implementation, documentation, and tests.
* Documentation refinements.
2004-11-29 <joshua@always.joy.eth.net>
* Release 1.01.
* Event.xs: Due to popular demand, queue_pending() is now a public
API, for better or worse. Beware of race conditions.
2004-11-29 Zefram <zefram@fysh.org>
* A var watcher can currently be created with no variable to
watch, provided of course that it is parked. However, once a
variable has been set, the watcher cannot be returned to the
no-variable state. The variable to watch can be changed, but the
watcher rejects any attempt to set the reference to undef.
Applied a patch to allow the variable reference of a var watcher
to be set to undef.
* Applied patch to clarify the documentation (with tweaks from
Joshua).
2004-05-14 <joshua@always.joy.eth.net>
* Release 1.00 (with Marc Lehmann's encouragement).
* c/watcher.c (pe_watcher_now): Check for a missing callback, not
only a missing perl callback. Marc A. Lehmann <pcg@goof.com>
2004-04-26 <joshua@always.joy.eth.net>
* lib/Event.pm (import): Make NO_TIME_HIRES actually work. Jerry
D. Hedden <jerry@hedden.us>
2004-04-22 <joshua@always.joy.eth.net>
* c/signal.c (pe_signal_stop): When a signal watcher stops, the
signal counter is cleared. Otherwise the signal watcher can
generate one last event after being stopped, which is a
bug. (Pointed out by Zefram <zefram@fysh.org>)
2004-04-21 <joshua@always.joy.eth.net>
* Release 0.88.
* lib/Event.pm: Simplify hooking into Time::HiRes. Add a
NO_HIRES_TIME export_ok symbol to turn off the probing.
* Event.xs: Remove U2time. Remove install_time_api().
* lib/Event.pod: More refinement from Zefram <zefram@fysh.org>.
* lib/Event.pod: ($watcher->pending & signal watchers): More
specific description by Zefram <zefram@fysh.org>.
* c/watcher.c (pe_watcher_now): Fix SEGV reported by Zefram
<zefram@fysh.org>. Add test.
2004-04-05 <joshua@always.joy.eth.net>
* lib/Event.pod (timer): Correction by Randal L. Schwartz
<merlyn@stonehenge.com>.
2004-04-03 <joshua@always.joy.eth.net>
* lib/Event.pod (timer): Doc clarification
(jdhedden@1979.usna.com).
Tue Feb 18 21:57:04 2003 Joshua N Pritikin <vishnu@pobox.com>
* Release 0.87.
* c/var.c (tracevar_r, tracevar_w): Fix declaration for recent
versions of perl (patch from Nick Eggleston <nick@dccinc.com>).
Sat May 25 11:23:50 2002 Joshua N Pritikin <vishnu@pobox.com>
* Release 0.86.
* c/unix.c: Solaris works better without POLLWRBAND (Clemens
Schrimpe <csch@Kiez.NET>).
Fri Feb 1 12:20:33 2002 Joshua N Pritikin <vishnu@pobox.com>
* Release 0.85.
* Apply patch from Allen Smith <easmith@beatrice.rutgers.edu>
to avoid infinite polling loop on some select implementations.
Also reported by Marc Lehmann <pcg@goof.com>.
Tue Jan 22 12:20:24 2002 Joshua N Pritikin <vishnu@pobox.com>
* Doc StarvePrio (Allen Smith <easmith@beatrice.rutgers.edu>).
* Remove IRIX special casing. Reports indicate that new versions
of IRIX don't need any hacks. (Allen Smith
<easmith@beatrice.rutgers.edu>)
2001-06-22 <vishnu@pobox.com>
* Release 0.83.
2001-06-22 <vishnu@pobox.com>
* Waste less time in timeable.c. (Peter Lombard <lombard@seismo.berkeley.edu>)
2001-06-21 <vishnu@pobox.com>
* Release 0.82.
2001-06-21 <vishnu@pobox.com>
* Stop watcher if $w->cb(undef) (Damien Neil <neild@misago.org>)
2001-01-31 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.81.
2001-01-25 Joshua Pritikin <joshua.pritikin@db.com>
* Fix callback.t fail without Time::HiRes.
2000-12-08 Joshua Pritikin <joshua.pritikin@db.com>
* Fix typo in EventAPI.h.
2000-12-07 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.80.
* Update Tutorial.pdf to Jochen's latest.
2000-12-06 Joshua Pritikin <joshua.pritikin@db.com>
* Remove silly warning on $io->poll(T).
* Fix $DIED doc. (paul@miraclefish.com)
2000-12-05 Joshua Pritikin <joshua.pritikin@db.com>
* Change C callback prototype to (void(*)(pe_event*))
at request of Jochen.
2000-12-01 Joshua Pritikin <joshua.pritikin@db.com>
* Warn if loop without active watchers.
* Slightly more reliable default_exception_handler.
2000-11-28 Joshua Pritikin <joshua.pritikin@db.com>
* Inline 0.30 integration (briani@activestate.com)
2000-11-17 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.79.
* Removed Event/inactivity.pm
2000-08-29 Joshua Pritikin <joshua.pritikin@db.com>
* #undef HAS_POLL for sgi (treygraves@yahoo.com)
* Moved REENTRANT & HARD flags to EventAPI.h. (Jochen)
* Removed obsolete CBTIME flag. (Jochen)
2000-08-28 Joshua Pritikin <joshua.pritikin@db.com>
* EventAPI += sv_2interval. (Jochen)
2000-07-06 Joshua Pritikin <joshua.pritikin@db.com>
* Applied patch for IRIS poll() from R.de.Vries@fokkerspace.nl
2000-05-25 Joshua Pritikin <joshua.pritikin@db.com>
* EventAPI += unloop_all.
2000-05-24 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.78.
* Invoke Carp::carp for internal warnings.
2000-05-19 Joshua Pritikin <joshua.pritikin@db.com>
* Fix SEGV triggered when Event-Stats is enabled while loop is
nested.
2000-05-12 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.77.
2000-05-10 Joshua Pritikin <joshua.pritikin@db.com>
* Fixed an obscure SEGV discovered by uri@sysarch.com.
* EventAPI += NVtime.
2000-04-26 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.76.
* Fixed a horribly subtle bug in the handling of reentrant
INVOKE1-style watchers (e.g. a timer) in nested loops. Added
test. This change also removes at least one conditional from a
hot code path.
2000-04-25 Joshua Pritikin <joshua.pritikin@db.com>
* EventAPI += unloop.
2000-04-24 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.75.
* Attributes called in "set" mode now return the new value.
* Renamed data() to private() and added back the old data().
Added tests & updated the pod.
2000-04-19 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.74.
* Resolved data() quandary. Added test.
2000-04-12 Joshua Pritikin <joshua.pritikin@db.com>
* Updated perlqt.t example.
2000-03-24 Joshua Pritikin <joshua.pritikin@db.com>
* Spell checked pod.
* Release 0.73.
* Fix for 5.6.0 with implicit context enabled.
2000-03-21 Joshua Pritikin <joshua.pritikin@db.com>
* Rename unix_io.c -> unix.c in anticipation of Win32 support.
2000-03-14 Joshua Pritikin <joshua.pritikin@db.com>
* Offer assurance about future compatibility (docs).
2000-03-10 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.72.
2000-03-09 Joshua Pritikin <joshua.pritikin@db.com>
* Rename NetServer::ProcessTop -> NetServer::Portal.
2000-03-08 Joshua Pritikin <joshua.pritikin@db.com>
* Removed unused QUEUED & RUNNING flags.
2000-03-07 Joshua Pritikin <joshua.pritikin@db.com>
* Made pending() aware of context. Added tests.
2000-03-03 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.71.
* Moved LoopLevel & ExitLevel from Perl to C, squeezing out some
potential bugs.
* Fixed SEGV triggered if $DebugLevel >= 4.
* Warn on unmatched unloop.
2000-03-01 Joshua Pritikin <joshua.pritikin@db.com>
* Added Tutorial.pdf (by Jochen).
* Moved semaphore & msg into demo directory. No one has ever
asked for them to be finished, so they aren't.
2000-02-25 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.70.
2000-02-24 Joshua Pritikin <joshua.pritikin@db.com>
* Fix bug in select() engine spotted by perl@jochen-stenzel.de
2000-02-22 Joshua Pritikin <joshua.pritikin@db.com>
* Prune demo directory.
* Add repeat.t demo. (perl@jochen-stenzel.de)
2000-02-18 Joshua Pritikin <joshua.pritikin@db.com>
* Add perlqt.t demo.
* Release 0.69.
2000-02-17 Joshua Pritikin <joshua.pritikin@db.com>
* Tweak documentation.
2000-02-15 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.68.
2000-02-14 Joshua Pritikin <joshua.pritikin@db.com>
* More careful checking of
intervals. (suggested by perl@jochen-stenzel.de)
2000-02-10 Joshua Pritikin <joshua.pritikin@db.com>
* Fix yet another typemap bug. (perl@jochen-stenzel.de)
* Make io default to poll=r; more stringent start test;
fix demo/stdin.t (suggested by perl@jochen-stenzel.de)
2000-02-09 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.67. Hopefully this release will prove stable.
* Fix bomb in group watchers. (perl@jochen-stenzel.de)
* Fixed another bug introduced in 0.61. (Insure++)
* Tighten typemap.
* Warn about non-existant methods.
2000-02-08 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.66.
* Fix horrendously subtle bug uncovered by Event-tcp.
* Eliminate (hopefully all) silent failures.
* Restrict var watchers to
scalars. (perl@jochen-stenzel.de is too creative)
2000-02-07 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.65.
* Group watchers for watching watchers. See demo/group.t
* Fix got() documentation, spotted by
perl@jochen-stenzel.de
* Make callback a prerequisite for starting watchers.
* Add test checking FIFO dispatch of equal priority events.
2000-02-04 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.64.
* Applied patch from gbarr@pobox.com that allows one to obtain the
number of events a watcher has pending in the event queue. Also,
included was a cosmetic fix for the typemap.
* Load the basic watcher types by default.
* Adjust hup.t test (conrad@fringehead.org).
2000-02-03 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.63.
* Allow var watchers to watch the same variable.
* Deprecated AUTOLOAD of Event->$type. (Nick & Graham)
* Reworked priority documentation based on comments from
perl@jochen-stenzel.de.
2000-02-01 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.62. ** Please upgrade if you installed 0.61. **
* Allow implied stop() if required attributes are explicitly
unset.
2000-01-31 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.61.
* is_cancelled() method (requested by
perl@jochen-stenzel.de)
* Doc updates.
* Prevent starting unconfigured or badly configured
watchers. Added tests. (perl@jochen-stenzel.de)
XXX DANGER! THIS CHANGE CAN BREAK EXISTING CODE !DANGER XXX
* Refuse to start cancelled watchers. Added test & updated doc.
(perl@jochen-stenzel.de).
2000-01-26 Joshua Pritikin <joshua.pritikin@db.com>
* If parked=>1 then the constructor will not invoke
$watcher->start(). (uri@sysarch.com)
* Release 0.60.
* Added $watcher->data() attribute. (This is Uri Guttman
<uri@sysarch.com>'s fault.)
2000-01-20 Joshua Pritikin <joshua.pritikin@db.com>
* Fixed refcnt problem caused by extra invocations of cancel()
(Discovered by uri@sysarch.com.) Added test.
* Release 0.59.
* Fixed serious memory leak (isolated by
perl@jochen-stenzel.de). Added t/leak2.t.
2000-01-19 Joshua Pritikin <joshua.pritikin@db.com>
* Doc for timeout_cb (demanded by uri@sysarch.com :-).
1999-12-15 Joshua Pritikin <joshua.pritikin@db.com>
* Added demo/variable_timer.t along with minor doc
update. (jsalmon@gw.thesalmons.org)
1999-11-22 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.58.
* timeout_cb for io watchers. Added test. (suggested by Uri
Guttman <uri@sysarch.com>)
* Copy the callback specification from watcher to event for
flexibility.
* Removed support for clump. The performance trade-off for this
feature was probably unmeasurable. Now it's definitely
unmeasurable. :-)
* Rename Ev* macros to Wa* to make room for new Ev macros.
1999-10-22 Joshua Pritikin <joshua.pritikin@db.com>
* Remove EvNOW macro.
1999-10-11 Joshua Pritikin <joshua.pritikin@db.com>
* Added demo/readline.t. (perl@jochen-stenzel.de)
1999-10-06 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.57.
* Memory leak fixed: ioevents were being retired to the wrong
freelist. (thospel@mail.dma.be)
1999-09-23 Joshua Pritikin <joshua.pritikin@db.com>
* Document is_active/is_suspended. (perl@jochen-stenzel.de)
1999-09-22 Joshua Pritikin <joshua.pritikin@db.com>
* Skip hup.t on Win32. (Paul.Moore@uk.origin-it.com)
* Release 0.56.
* Fixed detection of EOF. Added test. (Gisle Aas)
1999-09-14 Joshua Pritikin <joshua.pritikin@db.com>
* Figured out the strange pipe symantics on AIX and modified the
io.t test to cope. (dfavor@austin.ibm.com)
1999-09-13 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.55.
* Changes for clean threaded build against 5.5.61. Unfortunately,
this breaks threaded 5.5.3. If this is a problem for you then
send patches. The threading variations in the devel track are
driving me crazy. (dfavor@austin.ibm.com)
* Fixed coredump trigger by attach_to test (cpan-testers@perl.org).
1999-09-10 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.54.
* Improved cb(...) diagnostics. Added tests.
* Devel-PPPort (schinder@pobox.com of cpan-testers@perl.org).
1999-09-09 Joshua Pritikin <joshua.pritikin@db.com>
* If a file is unexpectedly closed, the io watcher is no longer
stopped. Instead the file handle is reset. This symantic allows
io timeouts to continue to trigger and should make recovery
simpler. Added tests.
* Prohibit attach_to blessed refs. Added test.
* Minor doc updates.
* Release 0.53.
* Fix Event::MakeMaker to pick the correct install directory.
1999-09-08 Joshua Pritikin <joshua.pritikin@db.com>
* This release is NOT binary compatible with 0.52!
* Obscure potential typemap bugs fixed.
* Reworked the typemap to avoid the exotic 5.6 self-tied hash
mechanism. It should now be fairly easy to backport Event to
older versions of perl.
* In the tradition of adding innovative (or at least strange)
features to Event, constructors now accept (attach_to=>$ref).
This will cause the watcher to attach its information to the given
$ref instead of to a fresh anonymous hash ref. For backwards
compatibility the default is still an anonymous hash.
* Removed a bunch of deprecated features.
* Reformatted the source to be more consistent (if not beautiful).
1999-08-18 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.52.
* Moved t/inactivity.t to demo/ because it fails occationally and
I don't have time to figure it out. You might say that it takes
too much time to write a good test of inactivity.
1999-08-02 Joshua Pritikin <joshua.pritikin@db.com>
* Make mention of Time::Warp.
1999-07-29 Joshua Pritikin <joshua.pritikin@db.com>
* Don't complain about Time::HiRes (uri@sysarch.com)
1999-07-27 Joshua Pritikin <joshua.pritikin@db.com>
* Skip t/idle2.t if Time::HiRes is unavailable (lukka@iki.fi &
gbarr@pobox.com).
1999-07-23 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.51.
* Notice bogus fds in both poll & select. Added test.
* Make mention of the mailing list archive.
1999-07-20 Joshua Pritikin <joshua.pritikin@db.com>
* Don't request benchmark results (artur@vogon.se).
1999-07-10 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.50.
* A few Win32 tweaks to get working tests to pass (jan.dubois).
* Minor cleanup in preparation for 0.50.
1999-06-30 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.44 (thanks: jan.dubois@ibm.net).
* Renamed abort() to scrub() to avoid clashing with Perl's abort.
* Removed remaining dependency on gettimeofday.
* C++ clean.
1999-06-22 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.43.
* Tweaks for threaded compile (dfavor@austin.ibm.com).
1999-06-19 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.42.
* Rename event.c -> ev.c (Jan Dubois).
* Split flags into individual methods: is_running, is_active,
is_suspended, is_queued.
* Repaired default_exception_handler.
1999-05-19 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.41.
* Added attributes() and configure() methods.
1999-05-18 Joshua Pritikin <joshua.pritikin@db.com>
* When using eval {} inside a callback, $@ could fool Event into
thinking that an exception is being thrown.
1999-05-17 Joshua Pritikin <joshua.pritikin@db.com>
* Moved attributes from hash entries to methods.
1999-05-07 Joshua Pritikin <joshua.pritikin@db.com>
* Fix unloop('').
1999-05-06 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.40.
* Regularize event constructors.
1999-05-04 Joshua Pritikin <joshua.pritikin@db.com>
* Doc fixes catalyzed by perl@jochen-stenzel.de.
1999-04-27 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.39.
1999-04-20 Joshua Pritikin <joshua.pritikin@db.com>
* Fix broken t/eval.t.
1999-04-19 Joshua Pritikin <joshua.pritikin@db.com>
* More conservative refcnt policy for watchers.
1999-04-16 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.38.
* Rename 'mom' to 'w'.
* Deprecate the accessing of watcher attributes via events.
* Fix PL_ macros again. (*Argh!*)
1999-04-14 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.37.
* Redesign typemap.
1999-04-12 Joshua Pritikin <joshua.pritikin@db.com>
* Make 'e_cbtime' available from perl. Added test.
1999-04-09 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.36.
* Return unloop_all($arg) from loop().
* Make compile with threaded perl.
1999-04-07 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.35.
* Documentation updates and reorganization.
* Switch inactivity from e_interval to e_timeout.
1999-04-06 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.34.
1999-04-05 Joshua Pritikin <joshua.pritikin@db.com>
* Plug typemap holes. Implementation still needs improvement.
* Make io timeout respect e_repeat. (gisle@aas.no).
1999-03-30 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.33.
1999-03-29 Joshua Pritikin <joshua.pritikin@db.com>
* Store 'e_max_cb_tm' and hand-off to stats engine.
1999-03-17 Joshua Pritikin <joshua.pritikin@db.com>
* Morph events into watchers when they go out of scope.
1999-03-16 Joshua Pritikin <joshua.pritikin@db.com>
* Refine typemap fix.
1999-03-15 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.32.
* Apply typemap fix as per gsar@activestate.com.
1999-03-09 Joshua Pritikin <joshua.pritikin@db.com>
* Cut version 0.31 for PerlClinic.
1999-03-05 Joshua Pritikin <joshua.pritikin@db.com>
* Simplified typemap in an attempt to squash bugs.
1999-03-04 Joshua Pritikin <joshua.pritikin@db.com>
* Search @INC in Event::MakeMaker.
1999-03-03 Joshua Pritikin <joshua.pritikin@db.com>
* Make io timers non-repeating.
* Relax io watchers more. Now they can be started with either
e_fd or e_timeout or both or neither.
1999-03-02 Joshua Pritikin <joshua.pritikin@db.com>
* Allow creation of io watchers without a valid e_fd. Should
probably do the same with the rest of the watcher types.
* Added e_suspend. Do we keep the 'suspend' and 'resume' methods?
1999-02-26 Joshua Pritikin <joshua.pritikin@db.com>
* Fixed refcnt problem triggered by deleting hash entries. Added
test.
1999-02-25 Joshua Pritikin <joshua.pritikin@db.com>
* Avoid qr// in keys.t.
1999-02-12 Joshua Pritikin <joshua.pritikin@db.com>
* Reroute C-API croak through Carp::croak. Added test.
1999-02-11 Joshua Pritikin <joshua.pritikin@db.com>
* Removed backward compatibility up to 0.24 (inclusive).
* Factored event init/dtor code.
* Added 'callback' hooks. Updated docs.
1999-02-03 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.30.
* Constructors now populate the watcher hash with any extra
unrecognized key-value pairs.
1999-02-01 Joshua Pritikin <joshua.pritikin@db.com>
* Better typemap diagnostics. There seem to be bugs lurking but I
can't construct a short test case...
1999-01-19 Joshua Pritikin <joshua.pritikin@db.com>
* Arrange for events to have the same careful typemap treatment as
do watchers. Added test.
1999-01-12 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.29.
* Unplugged Time::Virtual (suggested mainly by Sarathy, Nick and
Graham). See patches/time-hires.
1998-12-30 Joshua Pritikin <joshua.pritikin@db.com>
* Added AllWatchers & typemap functions to the public API.
* Moved Event::Stats to a separate tarball. I wonder if the stats
API is too restrictive?
1998-12-28 Joshua Pritikin <joshua.pritikin@db.com>
* Split Event::Watcher code into a separate file for intuitive
importing via 'use' (suggested by artur@vogon-solutions.com).
* Fix SEGV in keys %$event (ophir@internap.com &
artur@vogon-solutions.com). Added test.
* Tweaks to diagnostics.
1998-12-27 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.28.
* Event destruction now must be managed explicitly. Use the
'stop' method to disable a watcher and use 'cancel' to destroy a
watcher. This change is an unfortunate necessity because of
optimizations in perl's reference counting.
* Suspend & cancel now abort any pending events. In previous
releases, the callback could be called after cancel in some cases.
1998-12-25 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.27.
* Replaced newHVhv. Some versions of perl have a buggy
implementation.
* Fixed a few minor problems detected by Insure++.
1998-12-24 Joshua Pritikin <joshua.pritikin@db.com>
* Fixed typos in croak messages.
* Generous updates to Event.pod.
* Bumped version to 0.26. Merry Christmas!!
* Renamed (lots of) keys.
* Added 'use_keys' method. Comments?
* (Try to) remove support for leading dashes (any left?).
* Factor out code to Time::Virtual (& Time::HiRes).
1998-12-19 Joshua Pritikin <joshua.pritikin@db.com>
* Moved process.pm to demo directory.
1998-12-08 Joshua Pritikin <joshua.pritikin@db.com>
* Added discussion of event loops vs. threads
(kudos to Mark.Mielke.markm@nt.com & fellow loop'ers).
1998-11-20 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.25.
1998-11-19 Joshua Pritikin <joshua.pritikin@db.com>
* Move SAVETMPS/FREETMPS up to Event::_loop.
1998-11-13 Joshua Pritikin <joshua.pritikin@db.com>
* Split ACTIVE flag into two separate flags, ACTIVE & POLLING, to
more accurately track watcher state.
1998-11-09 Joshua Pritikin <joshua.pritikin@db.com>
* Tweaks to io 'events' mask handling.
* Move @EXPORT_OK list for qw(R W E T) to Event::Watcher.
1998-11-06 Joshua Pritikin <joshua.pritikin@db.com>
* Fix SEGV in all_watchers/all_idle if zero watchers present.
1998-11-04 Joshua Pritikin <joshua.pritikin@db.com>
* Nuke obsolete backward support code in io.c. (Poll constants to
set event mask.)
* Rename event_vtbl->watcher.
1998-11-01 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.24. [Massive code changes -- caution advised!]
* Reengineered hash-object implementation to use HVs.
1998-10-31 Joshua Pritikin <joshua.pritikin@db.com>
* Removed tailpoll support from io watchers. File::Tail can just
hook up with timers & a generic "block on read" API can be built
on top of that if need arises. Nick, this okay?
* Split watchers & events into separate C structures.
1998-10-24 Joshua Pritikin <joshua.pritikin@db.com>
* Fixed misbehaving autoload code.
* END hook to cancel all events before global destruction. Still
needs more work to be sure the memory is freed.
* Fixed bad arithmetic in io timeout code. Renamed interval
epsilon and added better diagnostics (see Event::_timeout_too_early).
1998-10-20 Joshua Pritikin <joshua.pritikin@db.com>
* Timers cancelled within their callback weren't! Fixed.
1998-10-19 Joshua Pritikin <joshua.pritikin@db.com>
* Fix typo in c/queue.c (thanks again Jan!).
1998-10-18 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.23.
* Unified Perl & C API for hooks.
* Niggles for Win32 (thanks Jan!).
1998-10-17 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.22.
* Include copy of self-tie patch with dist.
* Documentation for Event::MakeMaker.
* tailpoll revamped.
* MIN_PERL_DEFINE clean.
1998-10-15 Joshua Pritikin <joshua.pritikin@db.com>
* Improve sv_2interval typemap.
1998-10-08 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.21.
* Try to normalize benchmark.
* 'now' was broken for inactive events. Fixed & added test.
* Fixed infinite loop triggered by botched exception recovery.
1998-10-06 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.20.
* Rename inactive to inactivity.
* Use new self-tie to wrap watcher objects. Leak test now passes
for almost all watcher types.
1998-10-04 Joshua Pritikin <joshua.pritikin@db.com>
* Slight improvements to gettimeofday.c.
* Merged c_callback & perl_callback into one pointer slot.
1998-10-03 Joshua Pritikin <joshua.pritikin@db.com>
* Added timeable methods to the public API.
* Var watchers weren't working very well. Set up events/got mask
stuff mirroring io watchers. Added tests. Does anyone really
want timeouts?
* Release 0.19.
* Put in code for tailpoll, but I can't tell if it works because
the tail-f behavior seems to already happen automatically.
Comments? See demo/tail.t.
* Added inactive watchers (& tests).
* timeable API changes to allow multiple timers per watcher.
* Fixed non-ANSI function declaration in c/signal.c
* Reduced C API.
* Renamed queueEvent to queue.
* Fixed refcnt problem in DELETE.
* Dashes depreciated.
* Added -timeout to process watchers. Might be useful.
* Fixed typo induced polling in one_event.
* Moved R/W/E/T flags to Event from Event::io.
* Changed the arguments to $Event::DIED in order to cope with
$Event::DIED dieing. Fixed sweep exception handling. Added test.
1998-10-02 Joshua Pritikin <joshua.pritikin@db.com>
* Watchers created with the C API now should require their perl
support code automatically. Moved idle support to an autoloaded
pm.
* Added sweep & loop($timeout). Fixed sleep.
* Release 0.18.
* Added non-working export_fail prototype. Suggestions welcome.
* Re-factored start & stop better (the preCB method is gone).
* Finished up sleep(). Added tests.
* Tied watchers are now based on pe_tmevent.
1998-10-01 Joshua Pritikin <joshua.pritikin@db.com>
* Applied patch from Gisle for pe_sys_sleep/select.
* Renamed 'watchvar' to 'var'.
* Added tests for 'now' (it was completely broken!).
* Tweaked debug levels. Someone needs to inventory debug warnings
are decide what is reasonable.
* Release 0.17
* Added tests.
1998-09-30 Joshua Pritikin <joshua.pritikin@db.com>
* Added sleep(). Truly a tortuous experience.
* Added min/max interval to idle watchers.
* c_callback no longer prevents watcher destruction. Use refcnt!
* Renamed various C APIs for accuracy (unix_io.c).
* Reentrant flag added.
1998-09-29 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.16 (only as a patch)
* loop() now terminates when there are no active watchers left.
* Depreciated async. Moved -priority to -nice & added warning.
* Fixed minor stuff.
* Make io timeouts work for real. (Thanks Gisle :-)
* Release 0.15.
* Improved the EventAPI.h version check.
* Added -timeout for io watchers. Untested.
* Fix io watcher bugs (unix_io.c) pointed out by Gisle Aas.
1998-09-28 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.14.
* Gutted the internals to make events reentrant.
* The $Now cache was not being refreshed and that was causing
timers to be queued, well, never.
* Fixed whitespace in Event.pod. (Gisle Aas again.)
* Optimized priority queue (hopefully). I probably should have
benchmarked it first. :-P
1998-09-27 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.13.
* Moved and renamed lots of methods. Yet, added code to ease
backward compatibility. (perl-loop suggested)
1998-09-24 Joshua Pritikin <joshua.pritikin@db.com>
* Integrated rewritten documentation contributed by Gisle
Aas. Thanks!
1998-09-21 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.12.
* Event::MakeMaker & event_api.h.
1998-09-14 Joshua Pritikin <joshua.pritikin@db.com>
* Add 'total' stat. Moved stat methods to Event::Loop package.
1998-09-11 Joshua Pritikin <joshua.pritikin@db.com>
* Release 0.11.
1998-09-10 Joshua Pritikin <joshua.pritikin@db.com>
* Regularized exception handling. $Event::DIED is now called if an
event dies.
* Allow timer interval to be a scalar ref.
1998-09-09 Joshua Pritikin <joshua.pritikin@db.com>
* Tweaked queue scheduling. Events with priorities <= 5 now
starve if higher priority events are available.
* Changing the event priority of a queued event will now reque the
event into the appropriate queue.
* Split NetServer::ProcessTop into it's own tarball.
1998-09-04 Joshua Pritikin <joshua@eq1062.wks.na.deuba.com>
* Release 0.10.
* NetServer::ProcessTop implements a top-style control panel
available via telnet ($$ % 7000). See util/top.pl.
* Proxy "tied" event type that allows completely perl-side
implementation of new event handlers.
* Event::process is working again (implementation is entirely in
perl).
* Eliminated race conditions in signal handling.
* Zombie events are still not being collected due to mysterious
refcnt problems. It is possible that this cannot be resolved
until perl implements tied hashes properly (through a VTBL!).
* Removed $Event::*::Count since it is superceded by
NetServer::ProcessTop.
1998-08-28 Joshua Pritikin <joshua@eq1062.wks.na.deuba.com>
* Fixed serious bug in the event destructor.
1998-08-22 Joshua Pritikin <joshua@eq1062.wks.na.deuba.com>
* Accept file descriptor numbers in addition to filehandles, etc.
Maybe non-portable, but nice for unixen.
1998-08-19 Joshua Pritikin <joshua.pritikin@db.com>
* Fixed repeating timer logic. Tweaks for idle events.
1998-08-14 Joshua Pritikin <joshua.pritikin@db.com>
* Completed re-write of almost everything in C.
Change 144 on 1998/05/31 by <gbarr@pobox.com> (Graham Barr)
Event::watchvar
- Now passes $ref to callback
All
- added use attrs qw(locked method) to all subs, and code to
ensure this will work on pre-threaded perl
Change 143 on 1998/05/31 by <gbarr@pobox.com> (Graham Barr)
Event.xs
- Fixed so will compile with threaded perl
Event::timer
- Added -hard option
Change 124 on 1998/04/04 by <gbarr@pobox.com> (Graham Barr)
new files
Change 123 on 1998/04/04 by <gbarr@pobox.com> (Graham Barr)
Event
- Tweaks to keys dispatchAsyncEvents()
Change 121 on 1998/04/01 by <gbarr@pobox.com> (Graham Barr)
Event::timer
- added Time::HiRes
Event::idle, Event
- moved idle events into sub-module
Makefile.PL
- Removed INSTALLDIRS => 'perl'
|