ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/AIO.xs
(Generate patch)

Comparing IO-AIO/AIO.xs (file contents):
Revision 1.180 by root, Fri Feb 11 00:05:17 2011 UTC vs.
Revision 1.181 by root, Tue Feb 15 03:21:41 2011 UTC

866 /* atfork child called in fifo order, so before eio's handler */ 866 /* atfork child called in fifo order, so before eio's handler */
867 X_THREAD_ATFORK (0, 0, atfork_child); 867 X_THREAD_ATFORK (0, 0, atfork_child);
868} 868}
869 869
870void 870void
871max_poll_reqs (int nreqs) 871max_poll_reqs (unsigned int nreqs)
872 PROTOTYPE: $ 872 PROTOTYPE: $
873 CODE: 873 CODE:
874 eio_set_max_poll_reqs (nreqs); 874 eio_set_max_poll_reqs (nreqs);
875 875
876void 876void
878 PROTOTYPE: $ 878 PROTOTYPE: $
879 CODE: 879 CODE:
880 eio_set_max_poll_time (nseconds); 880 eio_set_max_poll_time (nseconds);
881 881
882void 882void
883min_parallel (int nthreads) 883min_parallel (unsigned int nthreads)
884 PROTOTYPE: $ 884 PROTOTYPE: $
885 CODE: 885 CODE:
886 eio_set_min_parallel (nthreads); 886 eio_set_min_parallel (nthreads);
887 887
888void 888void
889max_parallel (int nthreads) 889max_parallel (unsigned int nthreads)
890 PROTOTYPE: $ 890 PROTOTYPE: $
891 CODE: 891 CODE:
892 eio_set_max_parallel (nthreads); 892 eio_set_max_parallel (nthreads);
893 893
894void 894void
895max_idle (int nthreads) 895max_idle (unsigned int nthreads)
896 PROTOTYPE: $ 896 PROTOTYPE: $
897 CODE: 897 CODE:
898 eio_set_max_idle (nthreads); 898 eio_set_max_idle (nthreads);
899 899
900void 900void
901idle_timeout (unsigned int seconds)
902 PROTOTYPE: $
903 CODE:
904 eio_set_idle_timeout (seconds);
905
906void
901max_outstanding (int maxreqs) 907max_outstanding (unsigned int maxreqs)
902 PROTOTYPE: $ 908 PROTOTYPE: $
903 CODE: 909 CODE:
904 max_outstanding = maxreqs; 910 max_outstanding = maxreqs;
905 911
906void 912void

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines