123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147moduleNon_blocking=structmoduleCI=Cstubs_internalsexternalluv_stub_1_uv_strerror_r:int->bytesCI.ocaml->int->unit="luv_stub_1_uv_strerror_r"externalluv_stub_2_uv_err_name_r:int->bytesCI.ocaml->int->unit="luv_stub_2_uv_err_name_r"externalluv_stub_3_uv_translate_sys_error:int->int="luv_stub_3_uv_translate_sys_error"externalluv_stub_4_luv_version_suffix:unit->CI.voidp="luv_stub_4_luv_version_suffix"externalluv_stub_5_uv_version:unit->int="luv_stub_5_uv_version"externalluv_stub_6_luv_version_string:unit->CI.voidp="luv_stub_6_luv_version_string"externalluv_stub_7_uv_loop_init:_CI.fatptr->int="luv_stub_7_uv_loop_init"externalluv_stub_8_uv_loop_configure:_CI.fatptr->int->int->int="luv_stub_8_uv_loop_configure"externalluv_stub_9_uv_loop_close:_CI.fatptr->int="luv_stub_9_uv_loop_close"externalluv_stub_10_uv_default_loop:unit->CI.voidp="luv_stub_10_uv_default_loop"externalluv_stub_11_uv_loop_alive:_CI.fatptr->bool="luv_stub_11_uv_loop_alive"externalluv_stub_12_uv_stop:_CI.fatptr->unit="luv_stub_12_uv_stop"externalluv_stub_13_uv_backend_fd:_CI.fatptr->int="luv_stub_13_uv_backend_fd"externalluv_stub_14_uv_backend_timeout:_CI.fatptr->int="luv_stub_14_uv_backend_timeout"externalluv_stub_15_uv_now:_CI.fatptr->Unsigned.uint64="luv_stub_15_uv_now"externalluv_stub_16_uv_update_time:_CI.fatptr->unit="luv_stub_16_uv_update_time"externalluv_stub_17_uv_loop_fork:_CI.fatptr->int="luv_stub_17_uv_loop_fork"externalluv_stub_18_uv_library_shutdown:unit->unit="luv_stub_18_uv_library_shutdown"externalluv_stub_19_luv_get_close_trampoline:unit->CI.voidp="luv_stub_19_luv_get_close_trampoline"externalluv_stub_20_luv_get_alloc_trampoline:unit->CI.voidp="luv_stub_20_luv_get_alloc_trampoline"externalluv_stub_21_uv_is_active:_CI.fatptr->bool="luv_stub_21_uv_is_active"externalluv_stub_22_uv_is_closing:_CI.fatptr->bool="luv_stub_22_uv_is_closing"externalluv_stub_23_uv_close:_CI.fatptr->_CI.fatfunptr->unit="luv_stub_23_uv_close"externalluv_stub_24_uv_ref:_CI.fatptr->unit="luv_stub_24_uv_ref"externalluv_stub_25_uv_unref:_CI.fatptr->unit="luv_stub_25_uv_unref"externalluv_stub_26_uv_has_ref:_CI.fatptr->bool="luv_stub_26_uv_has_ref"externalluv_stub_27_uv_send_buffer_size:_CI.fatptr->_CI.fatptr->int="luv_stub_27_uv_send_buffer_size"externalluv_stub_28_uv_recv_buffer_size:_CI.fatptr->_CI.fatptr->int="luv_stub_28_uv_recv_buffer_size"externalluv_stub_29_uv_fileno:_CI.fatptr->_CI.fatptr->int="luv_stub_29_uv_fileno"externalluv_stub_30_uv_handle_get_loop:_CI.fatptr->CI.voidp="luv_stub_30_uv_handle_get_loop"externalluv_stub_31_uv_handle_get_data:_CI.fatptr->CI.voidp="luv_stub_31_uv_handle_get_data"externalluv_stub_32_uv_handle_set_data:_CI.fatptr->_CI.fatptr->unit="luv_stub_32_uv_handle_set_data"externalluv_stub_33_uv_cancel:_CI.fatptr->int="luv_stub_33_uv_cancel"externalluv_stub_34_uv_req_get_data:_CI.fatptr->CI.voidp="luv_stub_34_uv_req_get_data"externalluv_stub_35_uv_req_set_data:_CI.fatptr->_CI.fatptr->unit="luv_stub_35_uv_req_set_data"externalluv_stub_36_luv_get_timer_trampoline:unit->CI.voidp="luv_stub_36_luv_get_timer_trampoline"externalluv_stub_37_uv_timer_init:_CI.fatptr->_CI.fatptr->int="luv_stub_37_uv_timer_init"externalluv_stub_38_uv_timer_start:_CI.fatptr->_CI.fatfunptr->Unsigned.uint64->Unsigned.uint64->int="luv_stub_38_uv_timer_start"externalluv_stub_39_uv_timer_stop:_CI.fatptr->int="luv_stub_39_uv_timer_stop"externalluv_stub_40_uv_timer_again:_CI.fatptr->int="luv_stub_40_uv_timer_again"externalluv_stub_41_uv_timer_set_repeat:_CI.fatptr->Unsigned.uint64->unit="luv_stub_41_uv_timer_set_repeat"externalluv_stub_42_uv_timer_get_repeat:_CI.fatptr->Unsigned.uint64="luv_stub_42_uv_timer_get_repeat"externalluv_stub_43_uv_timer_get_due_in:_CI.fatptr->Unsigned.uint64="luv_stub_43_uv_timer_get_due_in"externalluv_stub_44_luv_get_prepare_trampoline:unit->CI.voidp="luv_stub_44_luv_get_prepare_trampoline"externalluv_stub_45_uv_prepare_init:_CI.fatptr->_CI.fatptr->int="luv_stub_45_uv_prepare_init"externalluv_stub_46_uv_prepare_start:_CI.fatptr->_CI.fatfunptr->int="luv_stub_46_uv_prepare_start"externalluv_stub_47_uv_prepare_stop:_CI.fatptr->int="luv_stub_47_uv_prepare_stop"externalluv_stub_48_luv_get_check_trampoline:unit->CI.voidp="luv_stub_48_luv_get_check_trampoline"externalluv_stub_49_uv_check_init:_CI.fatptr->_CI.fatptr->int="luv_stub_49_uv_check_init"externalluv_stub_50_uv_check_start:_CI.fatptr->_CI.fatfunptr->int="luv_stub_50_uv_check_start"externalluv_stub_51_uv_check_stop:_CI.fatptr->int="luv_stub_51_uv_check_stop"externalluv_stub_52_luv_get_idle_trampoline:unit->CI.voidp="luv_stub_52_luv_get_idle_trampoline"externalluv_stub_53_uv_idle_init:_CI.fatptr->_CI.fatptr->int="luv_stub_53_uv_idle_init"externalluv_stub_54_uv_idle_start:_CI.fatptr->_CI.fatfunptr->int="luv_stub_54_uv_idle_start"externalluv_stub_55_uv_idle_stop:_CI.fatptr->int="luv_stub_55_uv_idle_stop"externalluv_stub_56_luv_get_async_trampoline:unit->CI.voidp="luv_stub_56_luv_get_async_trampoline"externalluv_stub_57_uv_async_init:_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_57_uv_async_init"externalluv_stub_58_uv_async_send:_CI.fatptr->int="luv_stub_58_uv_async_send"externalluv_stub_59_luv_get_poll_trampoline:unit->CI.voidp="luv_stub_59_luv_get_poll_trampoline"externalluv_stub_60_uv_poll_init:_CI.fatptr->_CI.fatptr->int->int="luv_stub_60_uv_poll_init"externalluv_stub_61_uv_poll_init_socket:_CI.fatptr->_CI.fatptr->_CI.fatptr->int="luv_stub_61_uv_poll_init_socket"externalluv_stub_62_uv_poll_start:_CI.fatptr->int->_CI.fatfunptr->int="luv_stub_62_uv_poll_start"externalluv_stub_63_uv_poll_stop:_CI.fatptr->int="luv_stub_63_uv_poll_stop"externalluv_stub_64_luv_get_signal_trampoline:unit->CI.voidp="luv_stub_64_luv_get_signal_trampoline"externalluv_stub_65_uv_signal_init:_CI.fatptr->_CI.fatptr->int="luv_stub_65_uv_signal_init"externalluv_stub_66_uv_signal_start:_CI.fatptr->_CI.fatfunptr->int->int="luv_stub_66_uv_signal_start"externalluv_stub_67_uv_signal_start_oneshot:_CI.fatptr->_CI.fatfunptr->int->int="luv_stub_67_uv_signal_start_oneshot"externalluv_stub_68_uv_signal_stop:_CI.fatptr->int="luv_stub_68_uv_signal_stop"externalluv_stub_69_luv_get_connect_trampoline:unit->CI.voidp="luv_stub_69_luv_get_connect_trampoline"externalluv_stub_70_luv_get_shutdown_trampoline:unit->CI.voidp="luv_stub_70_luv_get_shutdown_trampoline"externalluv_stub_71_luv_get_write_trampoline:unit->CI.voidp="luv_stub_71_luv_get_write_trampoline"externalluv_stub_72_luv_get_connection_trampoline:unit->CI.voidp="luv_stub_72_luv_get_connection_trampoline"externalluv_stub_73_luv_get_read_trampoline:unit->CI.voidp="luv_stub_73_luv_get_read_trampoline"externalluv_stub_74_uv_shutdown:_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_74_uv_shutdown"externalluv_stub_75_uv_listen:_CI.fatptr->int->_CI.fatfunptr->int="luv_stub_75_uv_listen"externalluv_stub_76_uv_accept:_CI.fatptr->_CI.fatptr->int="luv_stub_76_uv_accept"externalluv_stub_77_luv_read_start:_CI.fatptr->_CI.fatfunptr->_CI.fatfunptr->int="luv_stub_77_luv_read_start"externalluv_stub_78_uv_read_stop:_CI.fatptr->int="luv_stub_78_uv_read_stop"externalluv_stub_79_uv_write2:_CI.fatptr->_CI.fatptr->_CI.fatptr->Unsigned.uint->_CI.fatptr->_CI.fatfunptr->int="luv_stub_79_uv_write2_byte6""luv_stub_79_uv_write2"externalluv_stub_80_uv_try_write:_CI.fatptr->_CI.fatptr->Unsigned.uint->int="luv_stub_80_uv_try_write"externalluv_stub_81_uv_is_readable:_CI.fatptr->bool="luv_stub_81_uv_is_readable"externalluv_stub_82_uv_is_writable:_CI.fatptr->bool="luv_stub_82_uv_is_writable"externalluv_stub_83_uv_stream_set_blocking:_CI.fatptr->bool->int="luv_stub_83_uv_stream_set_blocking"externalluv_stub_84_uv_stream_get_write_queue_size:_CI.fatptr->Unsigned.size_t="luv_stub_84_uv_stream_get_write_queue_size"externalluv_stub_85_uv_tcp_init:_CI.fatptr->_CI.fatptr->int="luv_stub_85_uv_tcp_init"externalluv_stub_86_uv_tcp_init_ex:_CI.fatptr->_CI.fatptr->Unsigned.uint->int="luv_stub_86_uv_tcp_init_ex"externalluv_stub_87_uv_tcp_open:_CI.fatptr->_CI.fatptr->int="luv_stub_87_uv_tcp_open"externalluv_stub_88_uv_tcp_nodelay:_CI.fatptr->bool->int="luv_stub_88_uv_tcp_nodelay"externalluv_stub_89_uv_tcp_keepalive:_CI.fatptr->bool->int->int="luv_stub_89_uv_tcp_keepalive"externalluv_stub_90_uv_tcp_simultaneous_accepts:_CI.fatptr->bool->int="luv_stub_90_uv_tcp_simultaneous_accepts"externalluv_stub_91_uv_tcp_bind:_CI.fatptr->_CI.fatptr->int->int="luv_stub_91_uv_tcp_bind"externalluv_stub_92_uv_tcp_getsockname:_CI.fatptr->_CI.fatptr->_CI.fatptr->int="luv_stub_92_uv_tcp_getsockname"externalluv_stub_93_uv_tcp_getpeername:_CI.fatptr->_CI.fatptr->_CI.fatptr->int="luv_stub_93_uv_tcp_getpeername"externalluv_stub_94_uv_tcp_connect:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_94_uv_tcp_connect"externalluv_stub_95_uv_tcp_close_reset:_CI.fatptr->_CI.fatfunptr->int="luv_stub_95_uv_tcp_close_reset"externalluv_stub_96_uv_pipe_init:_CI.fatptr->_CI.fatptr->bool->int="luv_stub_96_uv_pipe_init"externalluv_stub_97_uv_pipe_open:_CI.fatptr->int->int="luv_stub_97_uv_pipe_open"externalluv_stub_98_uv_pipe_connect:_CI.fatptr->_CI.fatptr->stringCI.ocaml->_CI.fatfunptr->unit="luv_stub_98_uv_pipe_connect"externalluv_stub_99_uv_pipe_getsockname:_CI.fatptr->bytesCI.ocaml->_CI.fatptr->int="luv_stub_99_uv_pipe_getsockname"externalluv_stub_100_uv_pipe_getpeername:_CI.fatptr->bytesCI.ocaml->_CI.fatptr->int="luv_stub_100_uv_pipe_getpeername"externalluv_stub_101_uv_pipe_pending_instances:_CI.fatptr->int->unit="luv_stub_101_uv_pipe_pending_instances"externalluv_stub_102_uv_pipe_pending_count:_CI.fatptr->int="luv_stub_102_uv_pipe_pending_count"externalluv_stub_103_uv_pipe_pending_type:_CI.fatptr->int="luv_stub_103_uv_pipe_pending_type"externalluv_stub_104_uv_pipe_chmod:_CI.fatptr->int->int="luv_stub_104_uv_pipe_chmod"externalluv_stub_105_uv_tty_init:_CI.fatptr->_CI.fatptr->int->int->int="luv_stub_105_uv_tty_init"externalluv_stub_106_uv_tty_set_mode:_CI.fatptr->Unsigned.uint32->int="luv_stub_106_uv_tty_set_mode"externalluv_stub_107_uv_tty_reset_mode:unit->int="luv_stub_107_uv_tty_reset_mode"externalluv_stub_108_uv_tty_get_winsize:_CI.fatptr->_CI.fatptr->_CI.fatptr->int="luv_stub_108_uv_tty_get_winsize"externalluv_stub_109_uv_tty_set_vterm_state:Unsigned.uint32->unit="luv_stub_109_uv_tty_set_vterm_state"externalluv_stub_110_uv_tty_get_vterm_state:_CI.fatptr->int="luv_stub_110_uv_tty_get_vterm_state"externalluv_stub_111_uv_udp_init:_CI.fatptr->_CI.fatptr->int="luv_stub_111_uv_udp_init"externalluv_stub_112_uv_udp_init_ex:_CI.fatptr->_CI.fatptr->Unsigned.uint->int="luv_stub_112_uv_udp_init_ex"externalluv_stub_113_uv_udp_open:_CI.fatptr->_CI.fatptr->int="luv_stub_113_uv_udp_open"externalluv_stub_114_uv_udp_bind:_CI.fatptr->_CI.fatptr->int->int="luv_stub_114_uv_udp_bind"externalluv_stub_115_uv_udp_connect:_CI.fatptr->_CI.fatptr->int="luv_stub_115_uv_udp_connect"externalluv_stub_116_uv_udp_getpeername:_CI.fatptr->_CI.fatptr->_CI.fatptr->int="luv_stub_116_uv_udp_getpeername"externalluv_stub_117_uv_udp_getsockname:_CI.fatptr->_CI.fatptr->_CI.fatptr->int="luv_stub_117_uv_udp_getsockname"externalluv_stub_118_uv_udp_set_membership:_CI.fatptr->stringCI.ocaml->stringCI.ocaml->Unsigned.uint32->int="luv_stub_118_uv_udp_set_membership"externalluv_stub_119_uv_udp_set_source_membership:_CI.fatptr->stringCI.ocaml->stringCI.ocaml->stringCI.ocaml->Unsigned.uint32->int="luv_stub_119_uv_udp_set_source_membership"externalluv_stub_120_uv_udp_set_multicast_loop:_CI.fatptr->bool->int="luv_stub_120_uv_udp_set_multicast_loop"externalluv_stub_121_uv_udp_set_multicast_ttl:_CI.fatptr->int->int="luv_stub_121_uv_udp_set_multicast_ttl"externalluv_stub_122_uv_udp_set_multicast_interface:_CI.fatptr->stringCI.ocaml->int="luv_stub_122_uv_udp_set_multicast_interface"externalluv_stub_123_uv_udp_set_broadcast:_CI.fatptr->bool->int="luv_stub_123_uv_udp_set_broadcast"externalluv_stub_124_uv_udp_set_ttl:_CI.fatptr->int->int="luv_stub_124_uv_udp_set_ttl"externalluv_stub_125_luv_get_send_trampoline:unit->CI.voidp="luv_stub_125_luv_get_send_trampoline"externalluv_stub_126_uv_udp_send:_CI.fatptr->_CI.fatptr->_CI.fatptr->Unsigned.uint->_CI.fatptr->_CI.fatfunptr->int="luv_stub_126_uv_udp_send_byte6""luv_stub_126_uv_udp_send"externalluv_stub_127_uv_udp_try_send:_CI.fatptr->_CI.fatptr->Unsigned.uint->_CI.fatptr->int="luv_stub_127_uv_udp_try_send"externalluv_stub_128_luv_get_recv_trampoline:unit->CI.voidp="luv_stub_128_luv_get_recv_trampoline"externalluv_stub_129_luv_udp_recv_start:_CI.fatptr->_CI.fatfunptr->_CI.fatfunptr->int="luv_stub_129_luv_udp_recv_start"externalluv_stub_130_uv_udp_recv_stop:_CI.fatptr->int="luv_stub_130_uv_udp_recv_stop"externalluv_stub_131_uv_udp_using_recvmmsg:_CI.fatptr->bool="luv_stub_131_uv_udp_using_recvmmsg"externalluv_stub_132_uv_udp_get_send_queue_size:_CI.fatptr->Unsigned.size_t="luv_stub_132_uv_udp_get_send_queue_size"externalluv_stub_133_uv_udp_get_send_queue_count:_CI.fatptr->Unsigned.size_t="luv_stub_133_uv_udp_get_send_queue_count"externalluv_stub_134_luv_get_exit_trampoline:unit->CI.voidp="luv_stub_134_luv_get_exit_trampoline"externalluv_stub_135_luv_null_exit_trampoline:unit->CI.voidp="luv_stub_135_luv_null_exit_trampoline"externalluv_stub_136_uv_disable_stdio_inheritance:unit->unit="luv_stub_136_uv_disable_stdio_inheritance"externalluv_stub_137_luv_spawn:_CI.fatptr->_CI.fatptr->_CI.fatfunptr->stringCI.ocaml->_CI.fatptr->int->_CI.fatptr->int->bool->stringCI.ocaml->bool->int->int->_CI.fatptr->int->int->int="luv_stub_137_luv_spawn_byte16""luv_stub_137_luv_spawn"externalluv_stub_138_uv_process_kill:_CI.fatptr->int->int="luv_stub_138_uv_process_kill"externalluv_stub_139_uv_kill:int->int->int="luv_stub_139_uv_kill"externalluv_stub_140_uv_process_get_pid:_CI.fatptr->int="luv_stub_140_uv_process_get_pid"externalluv_stub_141_luv_get_fs_event_trampoline:unit->CI.voidp="luv_stub_141_luv_get_fs_event_trampoline"externalluv_stub_142_uv_fs_event_init:_CI.fatptr->_CI.fatptr->int="luv_stub_142_uv_fs_event_init"externalluv_stub_143_luv_fs_event_start:_CI.fatptr->_CI.fatfunptr->stringCI.ocaml->int->int="luv_stub_143_luv_fs_event_start"externalluv_stub_144_uv_fs_event_stop:_CI.fatptr->int="luv_stub_144_uv_fs_event_stop"externalluv_stub_145_luv_get_fs_poll_trampoline:unit->CI.voidp="luv_stub_145_luv_get_fs_poll_trampoline"externalluv_stub_146_uv_fs_poll_init:_CI.fatptr->_CI.fatptr->int="luv_stub_146_uv_fs_poll_init"externalluv_stub_147_luv_fs_poll_start:_CI.fatptr->_CI.fatfunptr->stringCI.ocaml->int->int="luv_stub_147_luv_fs_poll_start"externalluv_stub_148_uv_fs_poll_stop:_CI.fatptr->int="luv_stub_148_uv_fs_poll_stop"externalluv_stub_149_luv_get_getaddrinfo_trampoline:unit->CI.voidp="luv_stub_149_luv_get_getaddrinfo_trampoline"externalluv_stub_150_uv_getaddrinfo:_CI.fatptr->_CI.fatptr->_CI.fatfunptr->_CI.fatptr->_CI.fatptr->_CI.fatptr->int="luv_stub_150_uv_getaddrinfo_byte6""luv_stub_150_uv_getaddrinfo"externalluv_stub_151_uv_freeaddrinfo:_CI.fatptr->unit="luv_stub_151_uv_freeaddrinfo"externalluv_stub_152_luv_get_getnameinfo_trampoline:unit->CI.voidp="luv_stub_152_luv_get_getnameinfo_trampoline"externalluv_stub_153_luv_getnameinfo:_CI.fatptr->_CI.fatptr->_CI.fatfunptr->_CI.fatptr->int->int="luv_stub_153_luv_getnameinfo"externalluv_stub_154_uv_dlopen:stringCI.ocaml->_CI.fatptr->bool="luv_stub_154_uv_dlopen"externalluv_stub_155_uv_dlclose:_CI.fatptr->unit="luv_stub_155_uv_dlclose"externalluv_stub_156_uv_dlsym:_CI.fatptr->stringCI.ocaml->_CI.fatptr->bool="luv_stub_156_uv_dlsym"externalluv_stub_157_luv_dlerror:_CI.fatptr->CI.voidp="luv_stub_157_luv_dlerror"externalluv_stub_158_uv_get_osfhandle:int->CI.managed_buffer="luv_stub_158_uv_get_osfhandle"externalluv_stub_159_uv_open_osfhandle:_CI.fatptr->int="luv_stub_159_uv_open_osfhandle"externalluv_stub_160_memcpy:bytesCI.ocaml->_CI.fatptr->int->unit="luv_stub_160_memcpy"externalluv_stub_161_memcpy:_CI.fatptr->bytesCI.ocaml->int->unit="luv_stub_161_memcpy"externalluv_stub_162_luv_get_work_trampoline:unit->CI.voidp="luv_stub_162_luv_get_work_trampoline"externalluv_stub_163_luv_get_after_work_trampoline:unit->CI.voidp="luv_stub_163_luv_get_after_work_trampoline"externalluv_stub_164_luv_get_c_work_trampoline:unit->CI.voidp="luv_stub_164_luv_get_c_work_trampoline"externalluv_stub_165_luv_get_after_c_work_trampoline:unit->CI.voidp="luv_stub_165_luv_get_after_c_work_trampoline"externalluv_stub_166_luv_add_c_function_and_argument:_CI.fatptr->nativeint->nativeint->bool="luv_stub_166_luv_add_c_function_and_argument"externalluv_stub_167_uv_queue_work:_CI.fatptr->_CI.fatptr->_CI.fatfunptr->_CI.fatfunptr->int="luv_stub_167_uv_queue_work"externalluv_stub_168_luv_get_thread_trampoline:unit->CI.voidp="luv_stub_168_luv_get_thread_trampoline"externalluv_stub_169_uv_thread_create_ex:_CI.fatptr->_CI.fatptr->_CI.fatfunptr->_CI.fatptr->int="luv_stub_169_uv_thread_create_ex"externalluv_stub_170_luv_thread_create_c:_CI.fatptr->_CI.fatptr->nativeint->nativeint->int="luv_stub_170_luv_thread_create_c"externalluv_stub_171_uv_thread_self:unit->CI.managed_buffer="luv_stub_171_uv_thread_self"externalluv_stub_172_uv_thread_equal:_CI.fatptr->_CI.fatptr->bool="luv_stub_172_uv_thread_equal"externalluv_stub_173_uv_key_create:_CI.fatptr->int="luv_stub_173_uv_key_create"externalluv_stub_174_uv_key_delete:_CI.fatptr->unit="luv_stub_174_uv_key_delete"externalluv_stub_175_uv_key_get:_CI.fatptr->CI.voidp="luv_stub_175_uv_key_get"externalluv_stub_176_uv_key_set:_CI.fatptr->_CI.fatptr->unit="luv_stub_176_uv_key_set"externalluv_stub_177_luv_get_once_trampoline:unit->CI.voidp="luv_stub_177_luv_get_once_trampoline"externalluv_stub_178_luv_once_init:_CI.fatptr->int="luv_stub_178_luv_once_init"externalluv_stub_179_uv_once:_CI.fatptr->_CI.fatfunptr->unit="luv_stub_179_uv_once"externalluv_stub_180_uv_mutex_init:_CI.fatptr->int="luv_stub_180_uv_mutex_init"externalluv_stub_181_uv_mutex_init_recursive:_CI.fatptr->int="luv_stub_181_uv_mutex_init_recursive"externalluv_stub_182_uv_mutex_destroy:_CI.fatptr->unit="luv_stub_182_uv_mutex_destroy"externalluv_stub_183_uv_mutex_trylock:_CI.fatptr->int="luv_stub_183_uv_mutex_trylock"externalluv_stub_184_uv_mutex_unlock:_CI.fatptr->unit="luv_stub_184_uv_mutex_unlock"externalluv_stub_185_uv_rwlock_init:_CI.fatptr->int="luv_stub_185_uv_rwlock_init"externalluv_stub_186_uv_rwlock_destroy:_CI.fatptr->unit="luv_stub_186_uv_rwlock_destroy"externalluv_stub_187_uv_rwlock_tryrdlock:_CI.fatptr->int="luv_stub_187_uv_rwlock_tryrdlock"externalluv_stub_188_uv_rwlock_rdunlock:_CI.fatptr->unit="luv_stub_188_uv_rwlock_rdunlock"externalluv_stub_189_uv_rwlock_trywrlock:_CI.fatptr->int="luv_stub_189_uv_rwlock_trywrlock"externalluv_stub_190_uv_rwlock_wrunlock:_CI.fatptr->unit="luv_stub_190_uv_rwlock_wrunlock"externalluv_stub_191_uv_sem_init:_CI.fatptr->Unsigned.uint->int="luv_stub_191_uv_sem_init"externalluv_stub_192_uv_sem_destroy:_CI.fatptr->unit="luv_stub_192_uv_sem_destroy"externalluv_stub_193_uv_sem_post:_CI.fatptr->unit="luv_stub_193_uv_sem_post"externalluv_stub_194_uv_sem_trywait:_CI.fatptr->int="luv_stub_194_uv_sem_trywait"externalluv_stub_195_uv_cond_init:_CI.fatptr->int="luv_stub_195_uv_cond_init"externalluv_stub_196_uv_cond_destroy:_CI.fatptr->unit="luv_stub_196_uv_cond_destroy"externalluv_stub_197_uv_cond_signal:_CI.fatptr->unit="luv_stub_197_uv_cond_signal"externalluv_stub_198_uv_cond_broadcast:_CI.fatptr->unit="luv_stub_198_uv_cond_broadcast"externalluv_stub_199_uv_barrier_init:_CI.fatptr->Unsigned.uint->int="luv_stub_199_uv_barrier_init"externalluv_stub_200_uv_barrier_destroy:_CI.fatptr->unit="luv_stub_200_uv_barrier_destroy"externalluv_stub_201_uv_ip4_addr:stringCI.ocaml->int->_CI.fatptr->int="luv_stub_201_uv_ip4_addr"externalluv_stub_202_uv_ip6_addr:stringCI.ocaml->int->_CI.fatptr->int="luv_stub_202_uv_ip6_addr"externalluv_stub_203_uv_ip4_name:_CI.fatptr->bytesCI.ocaml->Unsigned.size_t->int="luv_stub_203_uv_ip4_name"externalluv_stub_204_uv_ip6_name:_CI.fatptr->bytesCI.ocaml->Unsigned.size_t->int="luv_stub_204_uv_ip6_name"externalluv_stub_205_memcpy:_CI.fatptr->_CI.fatptr->int->unit="luv_stub_205_memcpy"externalluv_stub_206_ntohs:Unsigned.ushort->Unsigned.ushort="luv_stub_206_ntohs"externalluv_stub_207_uv_resident_set_memory:_CI.fatptr->int="luv_stub_207_uv_resident_set_memory"externalluv_stub_208_uv_uptime:_CI.fatptr->int="luv_stub_208_uv_uptime"externalluv_stub_209_uv_loadavg:_CI.fatptr->unit="luv_stub_209_uv_loadavg"externalluv_stub_210_uv_get_free_memory:unit->Unsigned.uint64="luv_stub_210_uv_get_free_memory"externalluv_stub_211_uv_get_total_memory:unit->Unsigned.uint64="luv_stub_211_uv_get_total_memory"externalluv_stub_212_uv_get_constrained_memory:unit->Unsigned.uint64="luv_stub_212_uv_get_constrained_memory"externalluv_stub_213_uv_os_getpriority:int->_CI.fatptr->int="luv_stub_213_uv_os_getpriority"externalluv_stub_214_uv_os_setpriority:int->int->int="luv_stub_214_uv_os_setpriority"externalluv_stub_215_uv_getrusage:_CI.fatptr->int="luv_stub_215_uv_getrusage"externalluv_stub_216_uv_os_getpid:unit->int="luv_stub_216_uv_os_getpid"externalluv_stub_217_uv_os_getppid:unit->int="luv_stub_217_uv_os_getppid"externalluv_stub_218_uv_cpu_info:_CI.fatptr->_CI.fatptr->int="luv_stub_218_uv_cpu_info"externalluv_stub_219_uv_free_cpu_info:_CI.fatptr->int->unit="luv_stub_219_uv_free_cpu_info"externalluv_stub_220_uv_interface_addresses:_CI.fatptr->_CI.fatptr->int="luv_stub_220_uv_interface_addresses"externalluv_stub_221_uv_free_interface_addresses:_CI.fatptr->int->unit="luv_stub_221_uv_free_interface_addresses"externalluv_stub_222_uv_if_indextoname:Unsigned.uint->bytesCI.ocaml->_CI.fatptr->int="luv_stub_222_uv_if_indextoname"externalluv_stub_223_uv_if_indextoiid:Unsigned.uint->bytesCI.ocaml->_CI.fatptr->int="luv_stub_223_uv_if_indextoiid"externalluv_stub_224_uv_os_gethostname:bytesCI.ocaml->_CI.fatptr->int="luv_stub_224_uv_os_gethostname"externalluv_stub_225_uv_exepath:bytesCI.ocaml->_CI.fatptr->int="luv_stub_225_uv_exepath"externalluv_stub_226_uv_cwd:bytesCI.ocaml->_CI.fatptr->int="luv_stub_226_uv_cwd"externalluv_stub_227_uv_chdir:stringCI.ocaml->int="luv_stub_227_uv_chdir"externalluv_stub_228_uv_os_homedir:bytesCI.ocaml->_CI.fatptr->int="luv_stub_228_uv_os_homedir"externalluv_stub_229_uv_os_tmpdir:bytesCI.ocaml->_CI.fatptr->int="luv_stub_229_uv_os_tmpdir"externalluv_stub_230_uv_os_get_passwd:_CI.fatptr->int="luv_stub_230_uv_os_get_passwd"externalluv_stub_231_uv_os_free_passwd:_CI.fatptr->unit="luv_stub_231_uv_os_free_passwd"externalluv_stub_232_uv_os_getenv:stringCI.ocaml->bytesCI.ocaml->_CI.fatptr->int="luv_stub_232_uv_os_getenv"externalluv_stub_233_uv_os_setenv:stringCI.ocaml->stringCI.ocaml->int="luv_stub_233_uv_os_setenv"externalluv_stub_234_uv_os_unsetenv:stringCI.ocaml->int="luv_stub_234_uv_os_unsetenv"externalluv_stub_235_uv_os_environ:_CI.fatptr->_CI.fatptr->int="luv_stub_235_uv_os_environ"externalluv_stub_236_uv_os_free_environ:_CI.fatptr->int->unit="luv_stub_236_uv_os_free_environ"externalluv_stub_237_luv_os_uname:bytesCI.ocaml->int="luv_stub_237_luv_os_uname"externalluv_stub_238_uv_gettimeofday:_CI.fatptr->int="luv_stub_238_uv_gettimeofday"externalluv_stub_239_uv_hrtime:unit->Unsigned.uint64="luv_stub_239_uv_hrtime"externalluv_stub_240_luv_get_random_trampoline:unit->CI.voidp="luv_stub_240_luv_get_random_trampoline"externalluv_stub_241_luv_null_random_trampoline:unit->CI.voidp="luv_stub_241_luv_null_random_trampoline"externalluv_stub_242_uv_random:_CI.fatptr->_CI.fatptr->_CI.fatptr->Unsigned.size_t->Unsigned.uint->_CI.fatfunptr->int="luv_stub_242_uv_random_byte6""luv_stub_242_uv_random"externalluv_stub_243_uv_metrics_idle_time:_CI.fatptr->Unsigned.uint64="luv_stub_243_uv_metrics_idle_time"type'aresult='atype'areturn='atype'afn=|Returns:'aCI.typ->'areturnfn|Function:'aCI.typ*'bfn->('a->'b)fnletmap_resultfx=fxletreturningt=Returnstlet(@->)fp=Function(f,p)letforeign:typeab.string->(a->b)fn->(a->b)=funnamet->matcht,namewith|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Uint64_t)),"uv_metrics_idle_time"->(funx1->letCI.CPointerx2=x1inluv_stub_243_uv_metrics_idle_timex2)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Size_t,Function(CI.PrimitiveCI.Uint,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_random"->(funx3x5x7x9x10x11->letCI.Static_funptrx12=x11inletCI.CPointerx8=x7inletCI.CPointerx6=x5inletCI.CPointerx4=x3inluv_stub_242_uv_randomx4x6x8x9x10x12)|Function(CI.Void,Returns(CI.Funptrx14)),"luv_null_random_trampoline"->(funx13->CI.make_fun_ptrx14(luv_stub_241_luv_null_random_trampolinex13))|Function(CI.Void,Returns(CI.Funptrx16)),"luv_get_random_trampoline"->(funx15->CI.make_fun_ptrx16(luv_stub_240_luv_get_random_trampolinex15))|Function(CI.Void,Returns(CI.PrimitiveCI.Uint64_t)),"uv_hrtime"->luv_stub_239_uv_hrtime|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_gettimeofday"->(funx18->letCI.CPointerx19=x18inluv_stub_238_uv_gettimeofdayx19)|Function(CI.OCamlCI.Bytes,Returns(CI.PrimitiveCI.Int)),"luv_os_uname"->luv_stub_237_luv_os_uname|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void)),"uv_os_free_environ"->(funx21x23->letCI.CPointerx22=x21inluv_stub_236_uv_os_free_environx22x23)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_environ"->(funx24x26->letCI.CPointerx27=x26inletCI.CPointerx25=x24inluv_stub_235_uv_os_environx25x27)|Function(CI.OCamlCI.String,Returns(CI.PrimitiveCI.Int)),"uv_os_unsetenv"->luv_stub_234_uv_os_unsetenv|Function(CI.OCamlCI.String,Function(CI.OCamlCI.String,Returns(CI.PrimitiveCI.Int))),"uv_os_setenv"->luv_stub_233_uv_os_setenv|Function(CI.OCamlCI.String,Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_os_getenv"->(funx31x32x33->letCI.CPointerx34=x33inluv_stub_232_uv_os_getenvx31x32x34)|Function(CI.Pointer_,ReturnsCI.Void),"uv_os_free_passwd"->(funx35->letCI.CPointerx36=x35inluv_stub_231_uv_os_free_passwdx36)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_os_get_passwd"->(funx37->letCI.CPointerx38=x37inluv_stub_230_uv_os_get_passwdx38)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_tmpdir"->(funx39x40->letCI.CPointerx41=x40inluv_stub_229_uv_os_tmpdirx39x41)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_homedir"->(funx42x43->letCI.CPointerx44=x43inluv_stub_228_uv_os_homedirx42x44)|Function(CI.OCamlCI.String,Returns(CI.PrimitiveCI.Int)),"uv_chdir"->luv_stub_227_uv_chdir|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_cwd"->(funx46x47->letCI.CPointerx48=x47inluv_stub_226_uv_cwdx46x48)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_exepath"->(funx49x50->letCI.CPointerx51=x50inluv_stub_225_uv_exepathx49x51)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_gethostname"->(funx52x53->letCI.CPointerx54=x53inluv_stub_224_uv_os_gethostnamex52x54)|Function(CI.PrimitiveCI.Uint,Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_if_indextoiid"->(funx55x56x57->letCI.CPointerx58=x57inluv_stub_223_uv_if_indextoiidx55x56x58)|Function(CI.PrimitiveCI.Uint,Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_if_indextoname"->(funx59x60x61->letCI.CPointerx62=x61inluv_stub_222_uv_if_indextonamex59x60x62)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void)),"uv_free_interface_addresses"->(funx63x65->letCI.CPointerx64=x63inluv_stub_221_uv_free_interface_addressesx64x65)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_interface_addresses"->(funx66x68->letCI.CPointerx69=x68inletCI.CPointerx67=x66inluv_stub_220_uv_interface_addressesx67x69)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void)),"uv_free_cpu_info"->(funx70x72->letCI.CPointerx71=x70inluv_stub_219_uv_free_cpu_infox71x72)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_cpu_info"->(funx73x75->letCI.CPointerx76=x75inletCI.CPointerx74=x73inluv_stub_218_uv_cpu_infox74x76)|Function(CI.Void,Returns(CI.PrimitiveCI.Int)),"uv_os_getppid"->luv_stub_217_uv_os_getppid|Function(CI.Void,Returns(CI.PrimitiveCI.Int)),"uv_os_getpid"->luv_stub_216_uv_os_getpid|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_getrusage"->(funx79->letCI.CPointerx80=x79inluv_stub_215_uv_getrusagex80)|Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_os_setpriority"->luv_stub_214_uv_os_setpriority|Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_getpriority"->(funx83x84->letCI.CPointerx85=x84inluv_stub_213_uv_os_getpriorityx83x85)|Function(CI.Void,Returns(CI.PrimitiveCI.Uint64_t)),"uv_get_constrained_memory"->luv_stub_212_uv_get_constrained_memory|Function(CI.Void,Returns(CI.PrimitiveCI.Uint64_t)),"uv_get_total_memory"->luv_stub_211_uv_get_total_memory|Function(CI.Void,Returns(CI.PrimitiveCI.Uint64_t)),"uv_get_free_memory"->luv_stub_210_uv_get_free_memory|Function(CI.Pointer_,ReturnsCI.Void),"uv_loadavg"->(funx89->letCI.CPointerx90=x89inluv_stub_209_uv_loadavgx90)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_uptime"->(funx91->letCI.CPointerx92=x91inluv_stub_208_uv_uptimex92)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_resident_set_memory"->(funx93->letCI.CPointerx94=x93inluv_stub_207_uv_resident_set_memoryx94)|Function(CI.PrimitiveCI.Ushort,Returns(CI.PrimitiveCI.Ushort)),"ntohs"->luv_stub_206_ntohs|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void))),"memcpy"->(funx96x98x100->letCI.CPointerx99=x98inletCI.CPointerx97=x96inluv_stub_205_memcpyx97x99x100)|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.PrimitiveCI.Size_t,Returns(CI.PrimitiveCI.Int)))),"uv_ip6_name"->(funx101x103x104->letCI.CPointerx102=x101inluv_stub_204_uv_ip6_namex102x103x104)|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.PrimitiveCI.Size_t,Returns(CI.PrimitiveCI.Int)))),"uv_ip4_name"->(funx105x107x108->letCI.CPointerx106=x105inluv_stub_203_uv_ip4_namex106x107x108)|Function(CI.OCamlCI.String,Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_ip6_addr"->(funx109x110x111->letCI.CPointerx112=x111inluv_stub_202_uv_ip6_addrx109x110x112)|Function(CI.OCamlCI.String,Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_ip4_addr"->(funx113x114x115->letCI.CPointerx116=x115inluv_stub_201_uv_ip4_addrx113x114x116)|Function(CI.Pointer_,ReturnsCI.Void),"uv_barrier_destroy"->(funx117->letCI.CPointerx118=x117inluv_stub_200_uv_barrier_destroyx118)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int))),"uv_barrier_init"->(funx119x121->letCI.CPointerx120=x119inluv_stub_199_uv_barrier_initx120x121)|Function(CI.Pointer_,ReturnsCI.Void),"uv_cond_broadcast"->(funx122->letCI.CPointerx123=x122inluv_stub_198_uv_cond_broadcastx123)|Function(CI.Pointer_,ReturnsCI.Void),"uv_cond_signal"->(funx124->letCI.CPointerx125=x124inluv_stub_197_uv_cond_signalx125)|Function(CI.Pointer_,ReturnsCI.Void),"uv_cond_destroy"->(funx126->letCI.CPointerx127=x126inluv_stub_196_uv_cond_destroyx127)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_cond_init"->(funx128->letCI.CPointerx129=x128inluv_stub_195_uv_cond_initx129)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_sem_trywait"->(funx130->letCI.CPointerx131=x130inluv_stub_194_uv_sem_trywaitx131)|Function(CI.Pointer_,ReturnsCI.Void),"uv_sem_post"->(funx132->letCI.CPointerx133=x132inluv_stub_193_uv_sem_postx133)|Function(CI.Pointer_,ReturnsCI.Void),"uv_sem_destroy"->(funx134->letCI.CPointerx135=x134inluv_stub_192_uv_sem_destroyx135)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int))),"uv_sem_init"->(funx136x138->letCI.CPointerx137=x136inluv_stub_191_uv_sem_initx137x138)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_wrunlock"->(funx139->letCI.CPointerx140=x139inluv_stub_190_uv_rwlock_wrunlockx140)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_rwlock_trywrlock"->(funx141->letCI.CPointerx142=x141inluv_stub_189_uv_rwlock_trywrlockx142)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_rdunlock"->(funx143->letCI.CPointerx144=x143inluv_stub_188_uv_rwlock_rdunlockx144)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_rwlock_tryrdlock"->(funx145->letCI.CPointerx146=x145inluv_stub_187_uv_rwlock_tryrdlockx146)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_destroy"->(funx147->letCI.CPointerx148=x147inluv_stub_186_uv_rwlock_destroyx148)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_rwlock_init"->(funx149->letCI.CPointerx150=x149inluv_stub_185_uv_rwlock_initx150)|Function(CI.Pointer_,ReturnsCI.Void),"uv_mutex_unlock"->(funx151->letCI.CPointerx152=x151inluv_stub_184_uv_mutex_unlockx152)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_mutex_trylock"->(funx153->letCI.CPointerx154=x153inluv_stub_183_uv_mutex_trylockx154)|Function(CI.Pointer_,ReturnsCI.Void),"uv_mutex_destroy"->(funx155->letCI.CPointerx156=x155inluv_stub_182_uv_mutex_destroyx156)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_mutex_init_recursive"->(funx157->letCI.CPointerx158=x157inluv_stub_181_uv_mutex_init_recursivex158)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_mutex_init"->(funx159->letCI.CPointerx160=x159inluv_stub_180_uv_mutex_initx160)|Function(CI.Pointer_,Function(CI.Funptr_,ReturnsCI.Void)),"uv_once"->(funx161x163->letCI.Static_funptrx164=x163inletCI.CPointerx162=x161inluv_stub_179_uv_oncex162x164)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"luv_once_init"->(funx165->letCI.CPointerx166=x165inluv_stub_178_luv_once_initx166)|Function(CI.Void,Returns(CI.Funptrx168)),"luv_get_once_trampoline"->(funx167->CI.make_fun_ptrx168(luv_stub_177_luv_get_once_trampolinex167))|Function(CI.Pointer_,Function(CI.Pointer_,ReturnsCI.Void)),"uv_key_set"->(funx169x171->letCI.CPointerx172=x171inletCI.CPointerx170=x169inluv_stub_176_uv_key_setx170x172)|Function(CI.Pointer_,Returns(CI.Pointerx175)),"uv_key_get"->(funx173->letCI.CPointerx174=x173inCI.make_ptrx175(luv_stub_175_uv_key_getx174))|Function(CI.Pointer_,ReturnsCI.Void),"uv_key_delete"->(funx176->letCI.CPointerx177=x176inluv_stub_174_uv_key_deletex177)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_key_create"->(funx178->letCI.CPointerx179=x178inluv_stub_173_uv_key_createx179)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool))),"uv_thread_equal"->(funx180x182->letCI.CPointerx183=x182inletCI.CPointerx181=x180inluv_stub_172_uv_thread_equalx181x183)|Function(CI.Void,Returns(CI.View{CI.ty=(CI.Struct_asx185);read=x186;_})),"uv_thread_self"->(funx184->x186(CI.make_structuredx185(luv_stub_171_uv_thread_selfx184)))|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Nativeint,Function(CI.PrimitiveCI.Nativeint,Returns(CI.PrimitiveCI.Int))))),"luv_thread_create_c"->(funx187x189x191x192->letCI.CPointerx190=x189inletCI.CPointerx188=x187inluv_stub_170_luv_thread_create_cx188x190x191x192)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))))),"uv_thread_create_ex"->(funx193x195x197x199->letCI.CPointerx200=x199inletCI.Static_funptrx198=x197inletCI.CPointerx196=x195inletCI.CPointerx194=x193inluv_stub_169_uv_thread_create_exx194x196x198x200)|Function(CI.Void,Returns(CI.Funptrx202)),"luv_get_thread_trampoline"->(funx201->CI.make_fun_ptrx202(luv_stub_168_luv_get_thread_trampolinex201))|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_queue_work"->(funx203x205x207x209->letCI.Static_funptrx210=x209inletCI.Static_funptrx208=x207inletCI.CPointerx206=x205inletCI.CPointerx204=x203inluv_stub_167_uv_queue_workx204x206x208x210)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Nativeint,Function(CI.PrimitiveCI.Nativeint,Returns(CI.PrimitiveCI.Bool)))),"luv_add_c_function_and_argument"->(funx211x213x214->letCI.CPointerx212=x211inluv_stub_166_luv_add_c_function_and_argumentx212x213x214)|Function(CI.Void,Returns(CI.Funptrx216)),"luv_get_after_c_work_trampoline"->(funx215->CI.make_fun_ptrx216(luv_stub_165_luv_get_after_c_work_trampolinex215))|Function(CI.Void,Returns(CI.Funptrx218)),"luv_get_c_work_trampoline"->(funx217->CI.make_fun_ptrx218(luv_stub_164_luv_get_c_work_trampolinex217))|Function(CI.Void,Returns(CI.Funptrx220)),"luv_get_after_work_trampoline"->(funx219->CI.make_fun_ptrx220(luv_stub_163_luv_get_after_work_trampolinex219))|Function(CI.Void,Returns(CI.Funptrx222)),"luv_get_work_trampoline"->(funx221->CI.make_fun_ptrx222(luv_stub_162_luv_get_work_trampolinex221))|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.PrimitiveCI.Int,ReturnsCI.Void))),"memcpy"->(funx223x225x226->letCI.CPointerx224=x223inluv_stub_161_memcpyx224x225x226)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void))),"memcpy"->(funx227x228x230->letCI.CPointerx229=x228inluv_stub_160_memcpyx227x229x230)|Function(CI.View{CI.ty=CI.Struct_;write=x232;_},Returns(CI.PrimitiveCI.Int)),"uv_open_osfhandle"->(funx231->letCI.CPointerx234=Ctypes.addr(x232x231)inletx233=x234inluv_stub_159_uv_open_osfhandlex233)|Function(CI.PrimitiveCI.Int,Returns(CI.View{CI.ty=(CI.Struct_asx236);read=x237;_})),"uv_get_osfhandle"->(funx235->x237(CI.make_structuredx236(luv_stub_158_uv_get_osfhandlex235)))|Function(CI.Pointer_,Returns(CI.View{CI.ty=CI.Pointerx240;read=x241;_})),"luv_dlerror"->(funx238->letCI.CPointerx239=x238inx241(CI.make_ptrx240(luv_stub_157_luv_dlerrorx239)))|Function(CI.Pointer_,Function(CI.OCamlCI.String,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)))),"uv_dlsym"->(funx242x244x245->letCI.CPointerx246=x245inletCI.CPointerx243=x242inluv_stub_156_uv_dlsymx243x244x246)|Function(CI.Pointer_,ReturnsCI.Void),"uv_dlclose"->(funx247->letCI.CPointerx248=x247inluv_stub_155_uv_dlclosex248)|Function(CI.OCamlCI.String,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool))),"uv_dlopen"->(funx249x250->letCI.CPointerx251=x250inluv_stub_154_uv_dlopenx249x251)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))))),"luv_getnameinfo"->(funx252x254x256x258x260->letCI.CPointerx259=x258inletCI.Static_funptrx257=x256inletCI.CPointerx255=x254inletCI.CPointerx253=x252inluv_stub_153_luv_getnameinfox253x255x257x259x260)|Function(CI.Void,Returns(CI.Funptrx262)),"luv_get_getnameinfo_trampoline"->(funx261->CI.make_fun_ptrx262(luv_stub_152_luv_get_getnameinfo_trampolinex261))|Function(CI.Pointer_,ReturnsCI.Void),"uv_freeaddrinfo"->(funx263->letCI.CPointerx264=x263inluv_stub_151_uv_freeaddrinfox264)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.View{CI.ty=CI.Pointer_;write=x272;_},Function(CI.View{CI.ty=CI.Pointer_;write=x276;_},Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))))))),"uv_getaddrinfo"->(funx265x267x269x271x275x279->letCI.CPointerx280=x279inletCI.CPointerx278=x276x275inletCI.CPointerx274=x272x271inletCI.Static_funptrx270=x269inletCI.CPointerx268=x267inletCI.CPointerx266=x265inletx273=x274inletx277=x278inluv_stub_150_uv_getaddrinfox266x268x270x273x277x280)|Function(CI.Void,Returns(CI.Funptrx282)),"luv_get_getaddrinfo_trampoline"->(funx281->CI.make_fun_ptrx282(luv_stub_149_luv_get_getaddrinfo_trampolinex281))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_fs_poll_stop"->(funx283->letCI.CPointerx284=x283inluv_stub_148_uv_fs_poll_stopx284)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.OCamlCI.String,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))))),"luv_fs_poll_start"->(funx285x287x289x290->letCI.Static_funptrx288=x287inletCI.CPointerx286=x285inluv_stub_147_luv_fs_poll_startx286x288x289x290)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_fs_poll_init"->(funx291x293->letCI.CPointerx294=x293inletCI.CPointerx292=x291inluv_stub_146_uv_fs_poll_initx292x294)|Function(CI.Void,Returns(CI.Funptrx296)),"luv_get_fs_poll_trampoline"->(funx295->CI.make_fun_ptrx296(luv_stub_145_luv_get_fs_poll_trampolinex295))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_fs_event_stop"->(funx297->letCI.CPointerx298=x297inluv_stub_144_uv_fs_event_stopx298)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.OCamlCI.String,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))))),"luv_fs_event_start"->(funx299x301x303x304->letCI.Static_funptrx302=x301inletCI.CPointerx300=x299inluv_stub_143_luv_fs_event_startx300x302x303x304)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_fs_event_init"->(funx305x307->letCI.CPointerx308=x307inletCI.CPointerx306=x305inluv_stub_142_uv_fs_event_initx306x308)|Function(CI.Void,Returns(CI.Funptrx310)),"luv_get_fs_event_trampoline"->(funx309->CI.make_fun_ptrx310(luv_stub_141_luv_get_fs_event_trampolinex309))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_process_get_pid"->(funx311->letCI.CPointerx312=x311inluv_stub_140_uv_process_get_pidx312)|Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_kill"->luv_stub_139_uv_kill|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_process_kill"->(funx315x317->letCI.CPointerx316=x315inluv_stub_138_uv_process_killx316x317)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.OCamlCI.String,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Bool,Function(CI.OCamlCI.String,Function(CI.PrimitiveCI.Bool,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))))))))))))))))),"luv_spawn"->(funx318x320x322x324x325x327x328x330x331x332x333x334x335x336x338x339->letCI.CPointerx337=x336inletCI.CPointerx329=x328inletCI.CPointerx326=x325inletCI.Static_funptrx323=x322inletCI.CPointerx321=x320inletCI.CPointerx319=x318inluv_stub_137_luv_spawnx319x321x323x324x326x327x329x330x331x332x333x334x335x337x338x339)|Function(CI.Void,ReturnsCI.Void),"uv_disable_stdio_inheritance"->luv_stub_136_uv_disable_stdio_inheritance|Function(CI.Void,Returns(CI.Funptrx342)),"luv_null_exit_trampoline"->(funx341->CI.make_fun_ptrx342(luv_stub_135_luv_null_exit_trampolinex341))|Function(CI.Void,Returns(CI.Funptrx344)),"luv_get_exit_trampoline"->(funx343->CI.make_fun_ptrx344(luv_stub_134_luv_get_exit_trampolinex343))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Size_t)),"uv_udp_get_send_queue_count"->(funx345->letCI.CPointerx346=x345inluv_stub_133_uv_udp_get_send_queue_countx346)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Size_t)),"uv_udp_get_send_queue_size"->(funx347->letCI.CPointerx348=x347inluv_stub_132_uv_udp_get_send_queue_sizex348)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_udp_using_recvmmsg"->(funx349->letCI.CPointerx350=x349inluv_stub_131_uv_udp_using_recvmmsgx350)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_udp_recv_stop"->(funx351->letCI.CPointerx352=x351inluv_stub_130_uv_udp_recv_stopx352)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"luv_udp_recv_start"->(funx353x355x357->letCI.Static_funptrx358=x357inletCI.Static_funptrx356=x355inletCI.CPointerx354=x353inluv_stub_129_luv_udp_recv_startx354x356x358)|Function(CI.Void,Returns(CI.Funptrx360)),"luv_get_recv_trampoline"->(funx359->CI.make_fun_ptrx360(luv_stub_128_luv_get_recv_trampolinex359))|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))))),"uv_udp_try_send"->(funx361x363x365x366->letCI.CPointerx367=x366inletCI.CPointerx364=x363inletCI.CPointerx362=x361inluv_stub_127_uv_udp_try_sendx362x364x365x367)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_udp_send"->(funx368x370x372x374x375x377->letCI.Static_funptrx378=x377inletCI.CPointerx376=x375inletCI.CPointerx373=x372inletCI.CPointerx371=x370inletCI.CPointerx369=x368inluv_stub_126_uv_udp_sendx369x371x373x374x376x378)|Function(CI.Void,Returns(CI.Funptrx380)),"luv_get_send_trampoline"->(funx379->CI.make_fun_ptrx380(luv_stub_125_luv_get_send_trampolinex379))|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_ttl"->(funx381x383->letCI.CPointerx382=x381inluv_stub_124_uv_udp_set_ttlx382x383)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_broadcast"->(funx384x386->letCI.CPointerx385=x384inluv_stub_123_uv_udp_set_broadcastx385x386)|Function(CI.Pointer_,Function(CI.OCamlCI.String,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_multicast_interface"->(funx387x389->letCI.CPointerx388=x387inluv_stub_122_uv_udp_set_multicast_interfacex388x389)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_multicast_ttl"->(funx390x392->letCI.CPointerx391=x390inluv_stub_121_uv_udp_set_multicast_ttlx391x392)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_multicast_loop"->(funx393x395->letCI.CPointerx394=x393inluv_stub_120_uv_udp_set_multicast_loopx394x395)|Function(CI.Pointer_,Function(CI.OCamlCI.String,Function(CI.OCamlCI.String,Function(CI.OCamlCI.String,Function(CI.View{CI.ty=CI.PrimitiveCI.Uint32_t;write=x402;_},Returns(CI.PrimitiveCI.Int)))))),"uv_udp_set_source_membership"->(funx396x398x399x400x401->letCI.CPointerx397=x396inletx403=x402x401inluv_stub_119_uv_udp_set_source_membershipx397x398x399x400x403)|Function(CI.Pointer_,Function(CI.OCamlCI.String,Function(CI.OCamlCI.String,Function(CI.View{CI.ty=CI.PrimitiveCI.Uint32_t;write=x409;_},Returns(CI.PrimitiveCI.Int))))),"uv_udp_set_membership"->(funx404x406x407x408->letCI.CPointerx405=x404inletx410=x409x408inluv_stub_118_uv_udp_set_membershipx405x406x407x410)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_udp_getsockname"->(funx411x413x415->letCI.CPointerx416=x415inletCI.CPointerx414=x413inletCI.CPointerx412=x411inluv_stub_117_uv_udp_getsocknamex412x414x416)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_udp_getpeername"->(funx417x419x421->letCI.CPointerx422=x421inletCI.CPointerx420=x419inletCI.CPointerx418=x417inluv_stub_116_uv_udp_getpeernamex418x420x422)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_udp_connect"->(funx423x425->letCI.CPointerx426=x425inletCI.CPointerx424=x423inluv_stub_115_uv_udp_connectx424x426)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_udp_bind"->(funx427x429x431->letCI.CPointerx430=x429inletCI.CPointerx428=x427inluv_stub_114_uv_udp_bindx428x430x431)|Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Struct_;write=x435;_},Returns(CI.PrimitiveCI.Int))),"uv_udp_open"->(funx432x434->letCI.CPointerx437=Ctypes.addr(x435x434)inletCI.CPointerx433=x432inletx436=x437inluv_stub_113_uv_udp_openx433x436)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int)))),"uv_udp_init_ex"->(funx438x440x442->letCI.CPointerx441=x440inletCI.CPointerx439=x438inluv_stub_112_uv_udp_init_exx439x441x442)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_udp_init"->(funx443x445->letCI.CPointerx446=x445inletCI.CPointerx444=x443inluv_stub_111_uv_udp_initx444x446)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_tty_get_vterm_state"->(funx447->letCI.CPointerx448=x447inluv_stub_110_uv_tty_get_vterm_statex448)|Function(CI.View{CI.ty=CI.PrimitiveCI.Uint32_t;write=x450;_},ReturnsCI.Void),"uv_tty_set_vterm_state"->(funx449->letx451=x450x449inluv_stub_109_uv_tty_set_vterm_statex451)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_tty_get_winsize"->(funx452x454x456->letCI.CPointerx457=x456inletCI.CPointerx455=x454inletCI.CPointerx453=x452inluv_stub_108_uv_tty_get_winsizex453x455x457)|Function(CI.Void,Returns(CI.PrimitiveCI.Int)),"uv_tty_reset_mode"->luv_stub_107_uv_tty_reset_mode|Function(CI.Pointer_,Function(CI.View{CI.ty=CI.PrimitiveCI.Uint32_t;write=x462;_},Returns(CI.PrimitiveCI.Int))),"uv_tty_set_mode"->(funx459x461->letCI.CPointerx460=x459inletx463=x462x461inluv_stub_106_uv_tty_set_modex460x463)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))))),"uv_tty_init"->(funx464x466x468x469->letCI.CPointerx467=x466inletCI.CPointerx465=x464inluv_stub_105_uv_tty_initx465x467x468x469)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_pipe_chmod"->(funx470x472->letCI.CPointerx471=x470inluv_stub_104_uv_pipe_chmodx471x472)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_pipe_pending_type"->(funx473->letCI.CPointerx474=x473inluv_stub_103_uv_pipe_pending_typex474)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_pipe_pending_count"->(funx475->letCI.CPointerx476=x475inluv_stub_102_uv_pipe_pending_countx476)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void)),"uv_pipe_pending_instances"->(funx477x479->letCI.CPointerx478=x477inluv_stub_101_uv_pipe_pending_instancesx478x479)|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_pipe_getpeername"->(funx480x482x483->letCI.CPointerx484=x483inletCI.CPointerx481=x480inluv_stub_100_uv_pipe_getpeernamex481x482x484)|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_pipe_getsockname"->(funx485x487x488->letCI.CPointerx489=x488inletCI.CPointerx486=x485inluv_stub_99_uv_pipe_getsocknamex486x487x489)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.OCamlCI.String,Function(CI.Funptr_,ReturnsCI.Void)))),"uv_pipe_connect"->(funx490x492x494x495->letCI.Static_funptrx496=x495inletCI.CPointerx493=x492inletCI.CPointerx491=x490inluv_stub_98_uv_pipe_connectx491x493x494x496)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_pipe_open"->(funx497x499->letCI.CPointerx498=x497inluv_stub_97_uv_pipe_openx498x499)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int)))),"uv_pipe_init"->(funx500x502x504->letCI.CPointerx503=x502inletCI.CPointerx501=x500inluv_stub_96_uv_pipe_initx501x503x504)|Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))),"uv_tcp_close_reset"->(funx505x507->letCI.Static_funptrx508=x507inletCI.CPointerx506=x505inluv_stub_95_uv_tcp_close_resetx506x508)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_tcp_connect"->(funx509x511x513x515->letCI.Static_funptrx516=x515inletCI.CPointerx514=x513inletCI.CPointerx512=x511inletCI.CPointerx510=x509inluv_stub_94_uv_tcp_connectx510x512x514x516)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_getpeername"->(funx517x519x521->letCI.CPointerx522=x521inletCI.CPointerx520=x519inletCI.CPointerx518=x517inluv_stub_93_uv_tcp_getpeernamex518x520x522)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_getsockname"->(funx523x525x527->letCI.CPointerx528=x527inletCI.CPointerx526=x525inletCI.CPointerx524=x523inluv_stub_92_uv_tcp_getsocknamex524x526x528)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_bind"->(funx529x531x533->letCI.CPointerx532=x531inletCI.CPointerx530=x529inluv_stub_91_uv_tcp_bindx530x532x533)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_tcp_simultaneous_accepts"->(funx534x536->letCI.CPointerx535=x534inluv_stub_90_uv_tcp_simultaneous_acceptsx535x536)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_keepalive"->(funx537x539x540->letCI.CPointerx538=x537inluv_stub_89_uv_tcp_keepalivex538x539x540)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_tcp_nodelay"->(funx541x543->letCI.CPointerx542=x541inluv_stub_88_uv_tcp_nodelayx542x543)|Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Struct_;write=x547;_},Returns(CI.PrimitiveCI.Int))),"uv_tcp_open"->(funx544x546->letCI.CPointerx549=Ctypes.addr(x547x546)inletCI.CPointerx545=x544inletx548=x549inluv_stub_87_uv_tcp_openx545x548)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_init_ex"->(funx550x552x554->letCI.CPointerx553=x552inletCI.CPointerx551=x550inluv_stub_86_uv_tcp_init_exx551x553x554)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_tcp_init"->(funx555x557->letCI.CPointerx558=x557inletCI.CPointerx556=x555inluv_stub_85_uv_tcp_initx556x558)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Size_t)),"uv_stream_get_write_queue_size"->(funx559->letCI.CPointerx560=x559inluv_stub_84_uv_stream_get_write_queue_sizex560)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_stream_set_blocking"->(funx561x563->letCI.CPointerx562=x561inluv_stub_83_uv_stream_set_blockingx562x563)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_is_writable"->(funx564->letCI.CPointerx565=x564inluv_stub_82_uv_is_writablex565)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_is_readable"->(funx566->letCI.CPointerx567=x566inluv_stub_81_uv_is_readablex567)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int)))),"uv_try_write"->(funx568x570x572->letCI.CPointerx571=x570inletCI.CPointerx569=x568inluv_stub_80_uv_try_writex569x571x572)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_write2"->(funx573x575x577x579x580x582->letCI.Static_funptrx583=x582inletCI.CPointerx581=x580inletCI.CPointerx578=x577inletCI.CPointerx576=x575inletCI.CPointerx574=x573inluv_stub_79_uv_write2x574x576x578x579x581x583)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_read_stop"->(funx584->letCI.CPointerx585=x584inluv_stub_78_uv_read_stopx585)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"luv_read_start"->(funx586x588x590->letCI.Static_funptrx591=x590inletCI.Static_funptrx589=x588inletCI.CPointerx587=x586inluv_stub_77_luv_read_startx587x589x591)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_accept"->(funx592x594->letCI.CPointerx595=x594inletCI.CPointerx593=x592inluv_stub_76_uv_acceptx593x595)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"uv_listen"->(funx596x598x599->letCI.Static_funptrx600=x599inletCI.CPointerx597=x596inluv_stub_75_uv_listenx597x598x600)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"uv_shutdown"->(funx601x603x605->letCI.Static_funptrx606=x605inletCI.CPointerx604=x603inletCI.CPointerx602=x601inluv_stub_74_uv_shutdownx602x604x606)|Function(CI.Void,Returns(CI.Funptrx608)),"luv_get_read_trampoline"->(funx607->CI.make_fun_ptrx608(luv_stub_73_luv_get_read_trampolinex607))|Function(CI.Void,Returns(CI.Funptrx610)),"luv_get_connection_trampoline"->(funx609->CI.make_fun_ptrx610(luv_stub_72_luv_get_connection_trampolinex609))|Function(CI.Void,Returns(CI.Funptrx612)),"luv_get_write_trampoline"->(funx611->CI.make_fun_ptrx612(luv_stub_71_luv_get_write_trampolinex611))|Function(CI.Void,Returns(CI.Funptrx614)),"luv_get_shutdown_trampoline"->(funx613->CI.make_fun_ptrx614(luv_stub_70_luv_get_shutdown_trampolinex613))|Function(CI.Void,Returns(CI.Funptrx616)),"luv_get_connect_trampoline"->(funx615->CI.make_fun_ptrx616(luv_stub_69_luv_get_connect_trampolinex615))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_signal_stop"->(funx617->letCI.CPointerx618=x617inluv_stub_68_uv_signal_stopx618)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_signal_start_oneshot"->(funx619x621x623->letCI.Static_funptrx622=x621inletCI.CPointerx620=x619inluv_stub_67_uv_signal_start_oneshotx620x622x623)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_signal_start"->(funx624x626x628->letCI.Static_funptrx627=x626inletCI.CPointerx625=x624inluv_stub_66_uv_signal_startx625x627x628)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_signal_init"->(funx629x631->letCI.CPointerx632=x631inletCI.CPointerx630=x629inluv_stub_65_uv_signal_initx630x632)|Function(CI.Void,Returns(CI.Funptrx634)),"luv_get_signal_trampoline"->(funx633->CI.make_fun_ptrx634(luv_stub_64_luv_get_signal_trampolinex633))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_poll_stop"->(funx635->letCI.CPointerx636=x635inluv_stub_63_uv_poll_stopx636)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"uv_poll_start"->(funx637x639x640->letCI.Static_funptrx641=x640inletCI.CPointerx638=x637inluv_stub_62_uv_poll_startx638x639x641)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Struct_;write=x647;_},Returns(CI.PrimitiveCI.Int)))),"uv_poll_init_socket"->(funx642x644x646->letCI.CPointerx649=Ctypes.addr(x647x646)inletCI.CPointerx645=x644inletCI.CPointerx643=x642inletx648=x649inluv_stub_61_uv_poll_init_socketx643x645x648)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_poll_init"->(funx650x652x654->letCI.CPointerx653=x652inletCI.CPointerx651=x650inluv_stub_60_uv_poll_initx651x653x654)|Function(CI.Void,Returns(CI.Funptrx656)),"luv_get_poll_trampoline"->(funx655->CI.make_fun_ptrx656(luv_stub_59_luv_get_poll_trampolinex655))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_async_send"->(funx657->letCI.CPointerx658=x657inluv_stub_58_uv_async_sendx658)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"uv_async_init"->(funx659x661x663->letCI.Static_funptrx664=x663inletCI.CPointerx662=x661inletCI.CPointerx660=x659inluv_stub_57_uv_async_initx660x662x664)|Function(CI.Void,Returns(CI.Funptrx666)),"luv_get_async_trampoline"->(funx665->CI.make_fun_ptrx666(luv_stub_56_luv_get_async_trampolinex665))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_idle_stop"->(funx667->letCI.CPointerx668=x667inluv_stub_55_uv_idle_stopx668)|Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))),"uv_idle_start"->(funx669x671->letCI.Static_funptrx672=x671inletCI.CPointerx670=x669inluv_stub_54_uv_idle_startx670x672)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_idle_init"->(funx673x675->letCI.CPointerx676=x675inletCI.CPointerx674=x673inluv_stub_53_uv_idle_initx674x676)|Function(CI.Void,Returns(CI.Funptrx678)),"luv_get_idle_trampoline"->(funx677->CI.make_fun_ptrx678(luv_stub_52_luv_get_idle_trampolinex677))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_check_stop"->(funx679->letCI.CPointerx680=x679inluv_stub_51_uv_check_stopx680)|Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))),"uv_check_start"->(funx681x683->letCI.Static_funptrx684=x683inletCI.CPointerx682=x681inluv_stub_50_uv_check_startx682x684)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_check_init"->(funx685x687->letCI.CPointerx688=x687inletCI.CPointerx686=x685inluv_stub_49_uv_check_initx686x688)|Function(CI.Void,Returns(CI.Funptrx690)),"luv_get_check_trampoline"->(funx689->CI.make_fun_ptrx690(luv_stub_48_luv_get_check_trampolinex689))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_prepare_stop"->(funx691->letCI.CPointerx692=x691inluv_stub_47_uv_prepare_stopx692)|Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))),"uv_prepare_start"->(funx693x695->letCI.Static_funptrx696=x695inletCI.CPointerx694=x693inluv_stub_46_uv_prepare_startx694x696)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_prepare_init"->(funx697x699->letCI.CPointerx700=x699inletCI.CPointerx698=x697inluv_stub_45_uv_prepare_initx698x700)|Function(CI.Void,Returns(CI.Funptrx702)),"luv_get_prepare_trampoline"->(funx701->CI.make_fun_ptrx702(luv_stub_44_luv_get_prepare_trampolinex701))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Uint64_t)),"uv_timer_get_due_in"->(funx703->letCI.CPointerx704=x703inluv_stub_43_uv_timer_get_due_inx704)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Uint64_t)),"uv_timer_get_repeat"->(funx705->letCI.CPointerx706=x705inluv_stub_42_uv_timer_get_repeatx706)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint64_t,ReturnsCI.Void)),"uv_timer_set_repeat"->(funx707x709->letCI.CPointerx708=x707inluv_stub_41_uv_timer_set_repeatx708x709)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_timer_again"->(funx710->letCI.CPointerx711=x710inluv_stub_40_uv_timer_againx711)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_timer_stop"->(funx712->letCI.CPointerx713=x712inluv_stub_39_uv_timer_stopx713)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.PrimitiveCI.Uint64_t,Function(CI.PrimitiveCI.Uint64_t,Returns(CI.PrimitiveCI.Int))))),"uv_timer_start"->(funx714x716x718x719->letCI.Static_funptrx717=x716inletCI.CPointerx715=x714inluv_stub_38_uv_timer_startx715x717x718x719)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_timer_init"->(funx720x722->letCI.CPointerx723=x722inletCI.CPointerx721=x720inluv_stub_37_uv_timer_initx721x723)|Function(CI.Void,Returns(CI.Funptrx725)),"luv_get_timer_trampoline"->(funx724->CI.make_fun_ptrx725(luv_stub_36_luv_get_timer_trampolinex724))|Function(CI.Pointer_,Function(CI.Pointer_,ReturnsCI.Void)),"uv_req_set_data"->(funx726x728->letCI.CPointerx729=x728inletCI.CPointerx727=x726inluv_stub_35_uv_req_set_datax727x729)|Function(CI.Pointer_,Returns(CI.Pointerx732)),"uv_req_get_data"->(funx730->letCI.CPointerx731=x730inCI.make_ptrx732(luv_stub_34_uv_req_get_datax731))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_cancel"->(funx733->letCI.CPointerx734=x733inluv_stub_33_uv_cancelx734)|Function(CI.Pointer_,Function(CI.Pointer_,ReturnsCI.Void)),"uv_handle_set_data"->(funx735x737->letCI.CPointerx738=x737inletCI.CPointerx736=x735inluv_stub_32_uv_handle_set_datax736x738)|Function(CI.Pointer_,Returns(CI.Pointerx741)),"uv_handle_get_data"->(funx739->letCI.CPointerx740=x739inCI.make_ptrx741(luv_stub_31_uv_handle_get_datax740))|Function(CI.Pointer_,Returns(CI.Pointerx744)),"uv_handle_get_loop"->(funx742->letCI.CPointerx743=x742inCI.make_ptrx744(luv_stub_30_uv_handle_get_loopx743))|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_fileno"->(funx745x747->letCI.CPointerx748=x747inletCI.CPointerx746=x745inluv_stub_29_uv_filenox746x748)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_recv_buffer_size"->(funx749x751->letCI.CPointerx752=x751inletCI.CPointerx750=x749inluv_stub_28_uv_recv_buffer_sizex750x752)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_send_buffer_size"->(funx753x755->letCI.CPointerx756=x755inletCI.CPointerx754=x753inluv_stub_27_uv_send_buffer_sizex754x756)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_has_ref"->(funx757->letCI.CPointerx758=x757inluv_stub_26_uv_has_refx758)|Function(CI.Pointer_,ReturnsCI.Void),"uv_unref"->(funx759->letCI.CPointerx760=x759inluv_stub_25_uv_unrefx760)|Function(CI.Pointer_,ReturnsCI.Void),"uv_ref"->(funx761->letCI.CPointerx762=x761inluv_stub_24_uv_refx762)|Function(CI.Pointer_,Function(CI.Funptr_,ReturnsCI.Void)),"uv_close"->(funx763x765->letCI.Static_funptrx766=x765inletCI.CPointerx764=x763inluv_stub_23_uv_closex764x766)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_is_closing"->(funx767->letCI.CPointerx768=x767inluv_stub_22_uv_is_closingx768)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_is_active"->(funx769->letCI.CPointerx770=x769inluv_stub_21_uv_is_activex770)|Function(CI.Void,Returns(CI.Funptrx772)),"luv_get_alloc_trampoline"->(funx771->CI.make_fun_ptrx772(luv_stub_20_luv_get_alloc_trampolinex771))|Function(CI.Void,Returns(CI.Funptrx774)),"luv_get_close_trampoline"->(funx773->CI.make_fun_ptrx774(luv_stub_19_luv_get_close_trampolinex773))|Function(CI.Void,ReturnsCI.Void),"uv_library_shutdown"->luv_stub_18_uv_library_shutdown|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_loop_fork"->(funx776->letCI.CPointerx777=x776inluv_stub_17_uv_loop_forkx777)|Function(CI.Pointer_,ReturnsCI.Void),"uv_update_time"->(funx778->letCI.CPointerx779=x778inluv_stub_16_uv_update_timex779)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Uint64_t)),"uv_now"->(funx780->letCI.CPointerx781=x780inluv_stub_15_uv_nowx781)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_backend_timeout"->(funx782->letCI.CPointerx783=x782inluv_stub_14_uv_backend_timeoutx783)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_backend_fd"->(funx784->letCI.CPointerx785=x784inluv_stub_13_uv_backend_fdx785)|Function(CI.Pointer_,ReturnsCI.Void),"uv_stop"->(funx786->letCI.CPointerx787=x786inluv_stub_12_uv_stopx787)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_loop_alive"->(funx788->letCI.CPointerx789=x788inluv_stub_11_uv_loop_alivex789)|Function(CI.Void,Returns(CI.Pointerx791)),"uv_default_loop"->(funx790->CI.make_ptrx791(luv_stub_10_uv_default_loopx790))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_loop_close"->(funx792->letCI.CPointerx793=x792inluv_stub_9_uv_loop_closex793)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_loop_configure"->(funx794x796x797->letCI.CPointerx795=x794inluv_stub_8_uv_loop_configurex795x796x797)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_loop_init"->(funx798->letCI.CPointerx799=x798inluv_stub_7_uv_loop_initx799)|Function(CI.Void,Returns(CI.View{CI.ty=CI.Pointerx801;read=x802;_})),"luv_version_string"->(funx800->x802(CI.make_ptrx801(luv_stub_6_luv_version_stringx800)))|Function(CI.Void,Returns(CI.PrimitiveCI.Int)),"uv_version"->luv_stub_5_uv_version|Function(CI.Void,Returns(CI.View{CI.ty=CI.Pointerx805;read=x806;_})),"luv_version_suffix"->(funx804->x806(CI.make_ptrx805(luv_stub_4_luv_version_suffixx804)))|Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)),"uv_translate_sys_error"->luv_stub_3_uv_translate_sys_error|Function(CI.PrimitiveCI.Int,Function(CI.OCamlCI.Bytes,Function(CI.PrimitiveCI.Int,ReturnsCI.Void))),"uv_err_name_r"->luv_stub_2_uv_err_name_r|Function(CI.PrimitiveCI.Int,Function(CI.OCamlCI.Bytes,Function(CI.PrimitiveCI.Int,ReturnsCI.Void))),"uv_strerror_r"->luv_stub_1_uv_strerror_r|_,s->Printf.ksprintffailwith"No match for %s"sletforeign_value:typea.string->aCtypes.typ->aCtypes.ptr=funnamet->matcht,namewith|_,s->Printf.ksprintffailwith"No match for %s"sendmoduleBlocking=structmoduleCI=Cstubs_internalsexternalluv_stub_blocking_1_uv_run:_CI.fatptr->Unsigned.uint32->bool="luv_stub_blocking_1_uv_run"externalluv_stub_blocking_2_uv_pipe_bind:_CI.fatptr->_CI.fatptr->int="luv_stub_blocking_2_uv_pipe_bind"externalluv_stub_blocking_3_luv_get_fs_trampoline:unit->CI.voidp="luv_stub_blocking_3_luv_get_fs_trampoline"externalluv_stub_blocking_4_luv_null_fs_callback_pointer:unit->CI.voidp="luv_stub_blocking_4_luv_null_fs_callback_pointer"externalluv_stub_blocking_5_uv_fs_req_cleanup:_CI.fatptr->unit="luv_stub_blocking_5_uv_fs_req_cleanup"externalluv_stub_blocking_6_uv_fs_close:_CI.fatptr->_CI.fatptr->int->_CI.fatfunptr->int="luv_stub_blocking_6_uv_fs_close"externalluv_stub_blocking_7_uv_fs_open:_CI.fatptr->_CI.fatptr->_CI.fatptr->int->int->_CI.fatfunptr->int="luv_stub_blocking_7_uv_fs_open_byte6""luv_stub_blocking_7_uv_fs_open"externalluv_stub_blocking_8_uv_fs_read:_CI.fatptr->_CI.fatptr->int->_CI.fatptr->Unsigned.uint->int64->_CI.fatfunptr->int="luv_stub_blocking_8_uv_fs_read_byte7""luv_stub_blocking_8_uv_fs_read"externalluv_stub_blocking_9_uv_fs_write:_CI.fatptr->_CI.fatptr->int->_CI.fatptr->Unsigned.uint->int64->_CI.fatfunptr->int="luv_stub_blocking_9_uv_fs_write_byte7""luv_stub_blocking_9_uv_fs_write"externalluv_stub_blocking_10_uv_fs_unlink:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_blocking_10_uv_fs_unlink"externalluv_stub_blocking_11_uv_fs_mkdir:_CI.fatptr->_CI.fatptr->_CI.fatptr->int->_CI.fatfunptr->int="luv_stub_blocking_11_uv_fs_mkdir"externalluv_stub_blocking_12_uv_fs_mkdtemp:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_blocking_12_uv_fs_mkdtemp"externalluv_stub_blocking_13_uv_fs_mkstemp:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_blocking_13_uv_fs_mkstemp"externalluv_stub_blocking_14_uv_fs_rmdir:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_blocking_14_uv_fs_rmdir"externalluv_stub_blocking_15_uv_fs_opendir:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_blocking_15_uv_fs_opendir"externalluv_stub_blocking_16_uv_fs_closedir:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_blocking_16_uv_fs_closedir"externalluv_stub_blocking_17_uv_fs_readdir:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_blocking_17_uv_fs_readdir"externalluv_stub_blocking_18_uv_fs_scandir:_CI.fatptr->_CI.fatptr->_CI.fatptr->int->_CI.fatfunptr->int="luv_stub_blocking_18_uv_fs_scandir"externalluv_stub_blocking_19_uv_fs_scandir_next:_CI.fatptr->_CI.fatptr->int="luv_stub_blocking_19_uv_fs_scandir_next"externalluv_stub_blocking_20_uv_fs_stat:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_blocking_20_uv_fs_stat"externalluv_stub_blocking_21_uv_fs_lstat:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_blocking_21_uv_fs_lstat"externalluv_stub_blocking_22_uv_fs_fstat:_CI.fatptr->_CI.fatptr->int->_CI.fatfunptr->int="luv_stub_blocking_22_uv_fs_fstat"externalluv_stub_blocking_23_uv_fs_statfs:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_blocking_23_uv_fs_statfs"externalluv_stub_blocking_24_uv_fs_rename:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_blocking_24_uv_fs_rename"externalluv_stub_blocking_25_uv_fs_fsync:_CI.fatptr->_CI.fatptr->int->_CI.fatfunptr->int="luv_stub_blocking_25_uv_fs_fsync"externalluv_stub_blocking_26_uv_fs_fdatasync:_CI.fatptr->_CI.fatptr->int->_CI.fatfunptr->int="luv_stub_blocking_26_uv_fs_fdatasync"externalluv_stub_blocking_27_uv_fs_ftruncate:_CI.fatptr->_CI.fatptr->int->int64->_CI.fatfunptr->int="luv_stub_blocking_27_uv_fs_ftruncate"externalluv_stub_blocking_28_uv_fs_copyfile:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatptr->int->_CI.fatfunptr->int="luv_stub_blocking_28_uv_fs_copyfile_byte6""luv_stub_blocking_28_uv_fs_copyfile"externalluv_stub_blocking_29_uv_fs_sendfile:_CI.fatptr->_CI.fatptr->int->int->int64->Unsigned.size_t->_CI.fatfunptr->int="luv_stub_blocking_29_uv_fs_sendfile_byte7""luv_stub_blocking_29_uv_fs_sendfile"externalluv_stub_blocking_30_uv_fs_access:_CI.fatptr->_CI.fatptr->_CI.fatptr->int->_CI.fatfunptr->int="luv_stub_blocking_30_uv_fs_access"externalluv_stub_blocking_31_uv_fs_chmod:_CI.fatptr->_CI.fatptr->_CI.fatptr->int->_CI.fatfunptr->int="luv_stub_blocking_31_uv_fs_chmod"externalluv_stub_blocking_32_uv_fs_fchmod:_CI.fatptr->_CI.fatptr->int->int->_CI.fatfunptr->int="luv_stub_blocking_32_uv_fs_fchmod"externalluv_stub_blocking_33_uv_fs_utime:_CI.fatptr->_CI.fatptr->_CI.fatptr->float->float->_CI.fatfunptr->int="luv_stub_blocking_33_uv_fs_utime_byte6""luv_stub_blocking_33_uv_fs_utime"externalluv_stub_blocking_34_uv_fs_futime:_CI.fatptr->_CI.fatptr->int->float->float->_CI.fatfunptr->int="luv_stub_blocking_34_uv_fs_futime_byte6""luv_stub_blocking_34_uv_fs_futime"externalluv_stub_blocking_35_uv_fs_lutime:_CI.fatptr->_CI.fatptr->_CI.fatptr->float->float->_CI.fatfunptr->int="luv_stub_blocking_35_uv_fs_lutime_byte6""luv_stub_blocking_35_uv_fs_lutime"externalluv_stub_blocking_36_uv_fs_link:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_blocking_36_uv_fs_link"externalluv_stub_blocking_37_uv_fs_symlink:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatptr->int->_CI.fatfunptr->int="luv_stub_blocking_37_uv_fs_symlink_byte6""luv_stub_blocking_37_uv_fs_symlink"externalluv_stub_blocking_38_uv_fs_readlink:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_blocking_38_uv_fs_readlink"externalluv_stub_blocking_39_uv_fs_realpath:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_blocking_39_uv_fs_realpath"externalluv_stub_blocking_40_uv_fs_chown:_CI.fatptr->_CI.fatptr->_CI.fatptr->int->int->_CI.fatfunptr->int="luv_stub_blocking_40_uv_fs_chown_byte6""luv_stub_blocking_40_uv_fs_chown"externalluv_stub_blocking_41_uv_fs_fchown:_CI.fatptr->_CI.fatptr->int->int->int->_CI.fatfunptr->int="luv_stub_blocking_41_uv_fs_fchown_byte6""luv_stub_blocking_41_uv_fs_fchown"externalluv_stub_blocking_42_uv_fs_lchown:_CI.fatptr->_CI.fatptr->_CI.fatptr->int->int->_CI.fatfunptr->int="luv_stub_blocking_42_uv_fs_lchown_byte6""luv_stub_blocking_42_uv_fs_lchown"externalluv_stub_blocking_43_uv_fs_get_result:_CI.fatptr->int64="luv_stub_blocking_43_uv_fs_get_result"externalluv_stub_blocking_44_uv_fs_get_ptr:_CI.fatptr->CI.voidp="luv_stub_blocking_44_uv_fs_get_ptr"externalluv_stub_blocking_45_uv_fs_get_ptr:_CI.fatptr->CI.voidp="luv_stub_blocking_45_uv_fs_get_ptr"externalluv_stub_blocking_46_luv_fs_get_path:_CI.fatptr->CI.voidp="luv_stub_blocking_46_luv_fs_get_path"externalluv_stub_blocking_47_uv_fs_get_statbuf:_CI.fatptr->CI.voidp="luv_stub_blocking_47_uv_fs_get_statbuf"externalluv_stub_blocking_48_uv_thread_join:_CI.fatptr->int="luv_stub_blocking_48_uv_thread_join"externalluv_stub_blocking_49_uv_mutex_lock:_CI.fatptr->unit="luv_stub_blocking_49_uv_mutex_lock"externalluv_stub_blocking_50_uv_rwlock_rdlock:_CI.fatptr->unit="luv_stub_blocking_50_uv_rwlock_rdlock"externalluv_stub_blocking_51_uv_rwlock_wrlock:_CI.fatptr->unit="luv_stub_blocking_51_uv_rwlock_wrlock"externalluv_stub_blocking_52_uv_sem_wait:_CI.fatptr->unit="luv_stub_blocking_52_uv_sem_wait"externalluv_stub_blocking_53_uv_cond_wait:_CI.fatptr->_CI.fatptr->unit="luv_stub_blocking_53_uv_cond_wait"externalluv_stub_blocking_54_uv_cond_timedwait:_CI.fatptr->_CI.fatptr->Unsigned.uint64->int="luv_stub_blocking_54_uv_cond_timedwait"externalluv_stub_blocking_55_uv_barrier_wait:_CI.fatptr->bool="luv_stub_blocking_55_uv_barrier_wait"externalluv_stub_blocking_56_uv_sleep:int->unit="luv_stub_blocking_56_uv_sleep"externalluv_stub_blocking_57_uv_random:_CI.fatptr->_CI.fatptr->_CI.fatptr->Unsigned.size_t->Unsigned.uint->_CI.fatfunptr->int="luv_stub_blocking_57_uv_random_byte6""luv_stub_blocking_57_uv_random"type'aresult='atype'areturn='atype'afn=|Returns:'aCI.typ->'areturnfn|Function:'aCI.typ*'bfn->('a->'b)fnletmap_resultfx=fxletreturningt=Returnstlet(@->)fp=Function(f,p)letforeign:typeab.string->(a->b)fn->(a->b)=funnamet->matcht,namewith|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Size_t,Function(CI.PrimitiveCI.Uint,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_random"->(funx814x816x818x820x821x822->letCI.Static_funptrx823=x822inletCI.CPointerx819=x818inletCI.CPointerx817=x816inletCI.CPointerx815=x814inluv_stub_blocking_57_uv_randomx815x817x819x820x821x823)|Function(CI.PrimitiveCI.Int,ReturnsCI.Void),"uv_sleep"->luv_stub_blocking_56_uv_sleep|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_barrier_wait"->(funx825->letCI.CPointerx826=x825inluv_stub_blocking_55_uv_barrier_waitx826)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint64_t,Returns(CI.PrimitiveCI.Int)))),"uv_cond_timedwait"->(funx827x829x831->letCI.CPointerx830=x829inletCI.CPointerx828=x827inluv_stub_blocking_54_uv_cond_timedwaitx828x830x831)|Function(CI.Pointer_,Function(CI.Pointer_,ReturnsCI.Void)),"uv_cond_wait"->(funx832x834->letCI.CPointerx835=x834inletCI.CPointerx833=x832inluv_stub_blocking_53_uv_cond_waitx833x835)|Function(CI.Pointer_,ReturnsCI.Void),"uv_sem_wait"->(funx836->letCI.CPointerx837=x836inluv_stub_blocking_52_uv_sem_waitx837)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_wrlock"->(funx838->letCI.CPointerx839=x838inluv_stub_blocking_51_uv_rwlock_wrlockx839)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_rdlock"->(funx840->letCI.CPointerx841=x840inluv_stub_blocking_50_uv_rwlock_rdlockx841)|Function(CI.Pointer_,ReturnsCI.Void),"uv_mutex_lock"->(funx842->letCI.CPointerx843=x842inluv_stub_blocking_49_uv_mutex_lockx843)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_thread_join"->(funx844->letCI.CPointerx845=x844inluv_stub_blocking_48_uv_thread_joinx845)|Function(CI.Pointer_,Returns(CI.Pointerx848)),"uv_fs_get_statbuf"->(funx846->letCI.CPointerx847=x846inCI.make_ptrx848(luv_stub_blocking_47_uv_fs_get_statbufx847))|Function(CI.Pointer_,Returns(CI.View{CI.ty=CI.Pointerx851;read=x852;_})),"luv_fs_get_path"->(funx849->letCI.CPointerx850=x849inx852(CI.make_ptrx851(luv_stub_blocking_46_luv_fs_get_pathx850)))|Function(CI.Pointer_,Returns(CI.View{CI.ty=CI.Pointerx855;read=x856;_})),"uv_fs_get_ptr"->(funx853->letCI.CPointerx854=x853inx856(CI.make_ptrx855(luv_stub_blocking_45_uv_fs_get_ptrx854)))|Function(CI.Pointer_,Returns(CI.Pointerx859)),"uv_fs_get_ptr"->(funx857->letCI.CPointerx858=x857inCI.make_ptrx859(luv_stub_blocking_44_uv_fs_get_ptrx858))|Function(CI.Pointer_,Returns(CI.View{CI.ty=CI.PrimitiveCI.Int64_t;read=x862;_})),"uv_fs_get_result"->(funx860->letCI.CPointerx861=x860inx862(luv_stub_blocking_43_uv_fs_get_resultx861))|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x868;_},Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_lchown"->(funx863x865x867x871x872x873->letCI.Static_funptrx874=x873inletCI.CPointerx870=x868x867inletCI.CPointerx866=x865inletCI.CPointerx864=x863inletx869=x870inluv_stub_blocking_42_uv_fs_lchownx864x866x869x871x872x874)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_fchown"->(funx875x877x879x880x881x882->letCI.Static_funptrx883=x882inletCI.CPointerx878=x877inletCI.CPointerx876=x875inluv_stub_blocking_41_uv_fs_fchownx876x878x879x880x881x883)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x889;_},Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_chown"->(funx884x886x888x892x893x894->letCI.Static_funptrx895=x894inletCI.CPointerx891=x889x888inletCI.CPointerx887=x886inletCI.CPointerx885=x884inletx890=x891inluv_stub_blocking_40_uv_fs_chownx885x887x890x892x893x895)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x901;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_realpath"->(funx896x898x900x904->letCI.Static_funptrx905=x904inletCI.CPointerx903=x901x900inletCI.CPointerx899=x898inletCI.CPointerx897=x896inletx902=x903inluv_stub_blocking_39_uv_fs_realpathx897x899x902x905)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x911;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_readlink"->(funx906x908x910x914->letCI.Static_funptrx915=x914inletCI.CPointerx913=x911x910inletCI.CPointerx909=x908inletCI.CPointerx907=x906inletx912=x913inluv_stub_blocking_38_uv_fs_readlinkx907x909x912x915)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x921;_},Function(CI.View{CI.ty=CI.Pointer_;write=x925;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_symlink"->(funx916x918x920x924x928x929->letCI.Static_funptrx930=x929inletCI.CPointerx927=x925x924inletCI.CPointerx923=x921x920inletCI.CPointerx919=x918inletCI.CPointerx917=x916inletx922=x923inletx926=x927inluv_stub_blocking_37_uv_fs_symlinkx917x919x922x926x928x930)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x936;_},Function(CI.View{CI.ty=CI.Pointer_;write=x940;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_link"->(funx931x933x935x939x943->letCI.Static_funptrx944=x943inletCI.CPointerx942=x940x939inletCI.CPointerx938=x936x935inletCI.CPointerx934=x933inletCI.CPointerx932=x931inletx937=x938inletx941=x942inluv_stub_blocking_36_uv_fs_linkx932x934x937x941x944)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x950;_},Function(CI.PrimitiveCI.Float,Function(CI.PrimitiveCI.Float,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_lutime"->(funx945x947x949x953x954x955->letCI.Static_funptrx956=x955inletCI.CPointerx952=x950x949inletCI.CPointerx948=x947inletCI.CPointerx946=x945inletx951=x952inluv_stub_blocking_35_uv_fs_lutimex946x948x951x953x954x956)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Float,Function(CI.PrimitiveCI.Float,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_futime"->(funx957x959x961x962x963x964->letCI.Static_funptrx965=x964inletCI.CPointerx960=x959inletCI.CPointerx958=x957inluv_stub_blocking_34_uv_fs_futimex958x960x961x962x963x965)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x971;_},Function(CI.PrimitiveCI.Float,Function(CI.PrimitiveCI.Float,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_utime"->(funx966x968x970x974x975x976->letCI.Static_funptrx977=x976inletCI.CPointerx973=x971x970inletCI.CPointerx969=x968inletCI.CPointerx967=x966inletx972=x973inluv_stub_blocking_33_uv_fs_utimex967x969x972x974x975x977)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_fchmod"->(funx978x980x982x983x984->letCI.Static_funptrx985=x984inletCI.CPointerx981=x980inletCI.CPointerx979=x978inluv_stub_blocking_32_uv_fs_fchmodx979x981x982x983x985)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x991;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_chmod"->(funx986x988x990x994x995->letCI.Static_funptrx996=x995inletCI.CPointerx993=x991x990inletCI.CPointerx989=x988inletCI.CPointerx987=x986inletx992=x993inluv_stub_blocking_31_uv_fs_chmodx987x989x992x994x996)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1002;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_access"->(funx997x999x1001x1005x1006->letCI.Static_funptrx1007=x1006inletCI.CPointerx1004=x1002x1001inletCI.CPointerx1000=x999inletCI.CPointerx998=x997inletx1003=x1004inluv_stub_blocking_30_uv_fs_accessx998x1000x1003x1005x1007)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int64_t,Function(CI.PrimitiveCI.Size_t,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))))),"uv_fs_sendfile"->(funx1008x1010x1012x1013x1014x1015x1016->letCI.Static_funptrx1017=x1016inletCI.CPointerx1011=x1010inletCI.CPointerx1009=x1008inluv_stub_blocking_29_uv_fs_sendfilex1009x1011x1012x1013x1014x1015x1017)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1023;_},Function(CI.View{CI.ty=CI.Pointer_;write=x1027;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_copyfile"->(funx1018x1020x1022x1026x1030x1031->letCI.Static_funptrx1032=x1031inletCI.CPointerx1029=x1027x1026inletCI.CPointerx1025=x1023x1022inletCI.CPointerx1021=x1020inletCI.CPointerx1019=x1018inletx1024=x1025inletx1028=x1029inluv_stub_blocking_28_uv_fs_copyfilex1019x1021x1024x1028x1030x1032)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int64_t,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_ftruncate"->(funx1033x1035x1037x1038x1039->letCI.Static_funptrx1040=x1039inletCI.CPointerx1036=x1035inletCI.CPointerx1034=x1033inluv_stub_blocking_27_uv_fs_ftruncatex1034x1036x1037x1038x1040)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_fdatasync"->(funx1041x1043x1045x1046->letCI.Static_funptrx1047=x1046inletCI.CPointerx1044=x1043inletCI.CPointerx1042=x1041inluv_stub_blocking_26_uv_fs_fdatasyncx1042x1044x1045x1047)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_fsync"->(funx1048x1050x1052x1053->letCI.Static_funptrx1054=x1053inletCI.CPointerx1051=x1050inletCI.CPointerx1049=x1048inluv_stub_blocking_25_uv_fs_fsyncx1049x1051x1052x1054)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1060;_},Function(CI.View{CI.ty=CI.Pointer_;write=x1064;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_rename"->(funx1055x1057x1059x1063x1067->letCI.Static_funptrx1068=x1067inletCI.CPointerx1066=x1064x1063inletCI.CPointerx1062=x1060x1059inletCI.CPointerx1058=x1057inletCI.CPointerx1056=x1055inletx1061=x1062inletx1065=x1066inluv_stub_blocking_24_uv_fs_renamex1056x1058x1061x1065x1068)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1074;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_statfs"->(funx1069x1071x1073x1077->letCI.Static_funptrx1078=x1077inletCI.CPointerx1076=x1074x1073inletCI.CPointerx1072=x1071inletCI.CPointerx1070=x1069inletx1075=x1076inluv_stub_blocking_23_uv_fs_statfsx1070x1072x1075x1078)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_fstat"->(funx1079x1081x1083x1084->letCI.Static_funptrx1085=x1084inletCI.CPointerx1082=x1081inletCI.CPointerx1080=x1079inluv_stub_blocking_22_uv_fs_fstatx1080x1082x1083x1085)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1091;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_lstat"->(funx1086x1088x1090x1094->letCI.Static_funptrx1095=x1094inletCI.CPointerx1093=x1091x1090inletCI.CPointerx1089=x1088inletCI.CPointerx1087=x1086inletx1092=x1093inluv_stub_blocking_21_uv_fs_lstatx1087x1089x1092x1095)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1101;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_stat"->(funx1096x1098x1100x1104->letCI.Static_funptrx1105=x1104inletCI.CPointerx1103=x1101x1100inletCI.CPointerx1099=x1098inletCI.CPointerx1097=x1096inletx1102=x1103inluv_stub_blocking_20_uv_fs_statx1097x1099x1102x1105)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_fs_scandir_next"->(funx1106x1108->letCI.CPointerx1109=x1108inletCI.CPointerx1107=x1106inluv_stub_blocking_19_uv_fs_scandir_nextx1107x1109)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1115;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_scandir"->(funx1110x1112x1114x1118x1119->letCI.Static_funptrx1120=x1119inletCI.CPointerx1117=x1115x1114inletCI.CPointerx1113=x1112inletCI.CPointerx1111=x1110inletx1116=x1117inluv_stub_blocking_18_uv_fs_scandirx1111x1113x1116x1118x1120)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_readdir"->(funx1121x1123x1125x1127->letCI.Static_funptrx1128=x1127inletCI.CPointerx1126=x1125inletCI.CPointerx1124=x1123inletCI.CPointerx1122=x1121inluv_stub_blocking_17_uv_fs_readdirx1122x1124x1126x1128)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_closedir"->(funx1129x1131x1133x1135->letCI.Static_funptrx1136=x1135inletCI.CPointerx1134=x1133inletCI.CPointerx1132=x1131inletCI.CPointerx1130=x1129inluv_stub_blocking_16_uv_fs_closedirx1130x1132x1134x1136)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1142;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_opendir"->(funx1137x1139x1141x1145->letCI.Static_funptrx1146=x1145inletCI.CPointerx1144=x1142x1141inletCI.CPointerx1140=x1139inletCI.CPointerx1138=x1137inletx1143=x1144inluv_stub_blocking_15_uv_fs_opendirx1138x1140x1143x1146)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1152;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_rmdir"->(funx1147x1149x1151x1155->letCI.Static_funptrx1156=x1155inletCI.CPointerx1154=x1152x1151inletCI.CPointerx1150=x1149inletCI.CPointerx1148=x1147inletx1153=x1154inluv_stub_blocking_14_uv_fs_rmdirx1148x1150x1153x1156)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1162;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_mkstemp"->(funx1157x1159x1161x1165->letCI.Static_funptrx1166=x1165inletCI.CPointerx1164=x1162x1161inletCI.CPointerx1160=x1159inletCI.CPointerx1158=x1157inletx1163=x1164inluv_stub_blocking_13_uv_fs_mkstempx1158x1160x1163x1166)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1172;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_mkdtemp"->(funx1167x1169x1171x1175->letCI.Static_funptrx1176=x1175inletCI.CPointerx1174=x1172x1171inletCI.CPointerx1170=x1169inletCI.CPointerx1168=x1167inletx1173=x1174inluv_stub_blocking_12_uv_fs_mkdtempx1168x1170x1173x1176)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1182;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_mkdir"->(funx1177x1179x1181x1185x1186->letCI.Static_funptrx1187=x1186inletCI.CPointerx1184=x1182x1181inletCI.CPointerx1180=x1179inletCI.CPointerx1178=x1177inletx1183=x1184inluv_stub_blocking_11_uv_fs_mkdirx1178x1180x1183x1185x1187)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1193;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_unlink"->(funx1188x1190x1192x1196->letCI.Static_funptrx1197=x1196inletCI.CPointerx1195=x1193x1192inletCI.CPointerx1191=x1190inletCI.CPointerx1189=x1188inletx1194=x1195inluv_stub_blocking_10_uv_fs_unlinkx1189x1191x1194x1197)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Function(CI.PrimitiveCI.Int64_t,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))))),"uv_fs_write"->(funx1198x1200x1202x1203x1205x1206x1207->letCI.Static_funptrx1208=x1207inletCI.CPointerx1204=x1203inletCI.CPointerx1201=x1200inletCI.CPointerx1199=x1198inluv_stub_blocking_9_uv_fs_writex1199x1201x1202x1204x1205x1206x1208)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Function(CI.PrimitiveCI.Int64_t,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))))),"uv_fs_read"->(funx1209x1211x1213x1214x1216x1217x1218->letCI.Static_funptrx1219=x1218inletCI.CPointerx1215=x1214inletCI.CPointerx1212=x1211inletCI.CPointerx1210=x1209inluv_stub_blocking_8_uv_fs_readx1210x1212x1213x1215x1216x1217x1219)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1225;_},Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_open"->(funx1220x1222x1224x1228x1229x1230->letCI.Static_funptrx1231=x1230inletCI.CPointerx1227=x1225x1224inletCI.CPointerx1223=x1222inletCI.CPointerx1221=x1220inletx1226=x1227inluv_stub_blocking_7_uv_fs_openx1221x1223x1226x1228x1229x1231)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_close"->(funx1232x1234x1236x1237->letCI.Static_funptrx1238=x1237inletCI.CPointerx1235=x1234inletCI.CPointerx1233=x1232inluv_stub_blocking_6_uv_fs_closex1233x1235x1236x1238)|Function(CI.Pointer_,ReturnsCI.Void),"uv_fs_req_cleanup"->(funx1239->letCI.CPointerx1240=x1239inluv_stub_blocking_5_uv_fs_req_cleanupx1240)|Function(CI.Void,Returns(CI.Funptrx1242)),"luv_null_fs_callback_pointer"->(funx1241->CI.make_fun_ptrx1242(luv_stub_blocking_4_luv_null_fs_callback_pointerx1241))|Function(CI.Void,Returns(CI.Funptrx1244)),"luv_get_fs_trampoline"->(funx1243->CI.make_fun_ptrx1244(luv_stub_blocking_3_luv_get_fs_trampolinex1243))|Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1248;_},Returns(CI.PrimitiveCI.Int))),"uv_pipe_bind"->(funx1245x1247->letCI.CPointerx1250=x1248x1247inletCI.CPointerx1246=x1245inletx1249=x1250inluv_stub_blocking_2_uv_pipe_bindx1246x1249)|Function(CI.Pointer_,Function(CI.View{CI.ty=CI.PrimitiveCI.Uint32_t;write=x1254;_},Returns(CI.PrimitiveCI.Bool))),"uv_run"->(funx1251x1253->letCI.CPointerx1252=x1251inletx1255=x1254x1253inluv_stub_blocking_1_uv_runx1252x1255)|_,s->Printf.ksprintffailwith"No match for %s"sletforeign_value:typea.string->aCtypes.typ->aCtypes.ptr=funnamet->matcht,namewith|_,s->Printf.ksprintffailwith"No match for %s"send