123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207moduleNon_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_socketpair:int->int->_CI.fatptr->int->int->int="luv_stub_88_uv_socketpair"externalluv_stub_89_uv_tcp_nodelay:_CI.fatptr->bool->int="luv_stub_89_uv_tcp_nodelay"externalluv_stub_90_uv_tcp_keepalive:_CI.fatptr->bool->int->int="luv_stub_90_uv_tcp_keepalive"externalluv_stub_91_uv_tcp_simultaneous_accepts:_CI.fatptr->bool->int="luv_stub_91_uv_tcp_simultaneous_accepts"externalluv_stub_92_uv_tcp_bind:_CI.fatptr->_CI.fatptr->int->int="luv_stub_92_uv_tcp_bind"externalluv_stub_93_uv_tcp_getsockname:_CI.fatptr->_CI.fatptr->_CI.fatptr->int="luv_stub_93_uv_tcp_getsockname"externalluv_stub_94_uv_tcp_getpeername:_CI.fatptr->_CI.fatptr->_CI.fatptr->int="luv_stub_94_uv_tcp_getpeername"externalluv_stub_95_uv_tcp_connect:_CI.fatptr->_CI.fatptr->_CI.fatptr->_CI.fatfunptr->int="luv_stub_95_uv_tcp_connect"externalluv_stub_96_uv_tcp_close_reset:_CI.fatptr->_CI.fatfunptr->int="luv_stub_96_uv_tcp_close_reset"externalluv_stub_97_uv_pipe_init:_CI.fatptr->_CI.fatptr->bool->int="luv_stub_97_uv_pipe_init"externalluv_stub_98_uv_pipe:_CI.fatptr->int->int->int="luv_stub_98_uv_pipe"externalluv_stub_99_uv_pipe_open:_CI.fatptr->int->int="luv_stub_99_uv_pipe_open"externalluv_stub_100_uv_pipe_connect:_CI.fatptr->_CI.fatptr->stringCI.ocaml->_CI.fatfunptr->unit="luv_stub_100_uv_pipe_connect"externalluv_stub_101_uv_pipe_getsockname:_CI.fatptr->bytesCI.ocaml->_CI.fatptr->int="luv_stub_101_uv_pipe_getsockname"externalluv_stub_102_uv_pipe_getpeername:_CI.fatptr->bytesCI.ocaml->_CI.fatptr->int="luv_stub_102_uv_pipe_getpeername"externalluv_stub_103_uv_pipe_pending_instances:_CI.fatptr->int->unit="luv_stub_103_uv_pipe_pending_instances"externalluv_stub_104_uv_pipe_pending_count:_CI.fatptr->int="luv_stub_104_uv_pipe_pending_count"externalluv_stub_105_uv_pipe_pending_type:_CI.fatptr->int="luv_stub_105_uv_pipe_pending_type"externalluv_stub_106_uv_pipe_chmod:_CI.fatptr->int->int="luv_stub_106_uv_pipe_chmod"externalluv_stub_107_uv_tty_init:_CI.fatptr->_CI.fatptr->int->int->int="luv_stub_107_uv_tty_init"externalluv_stub_108_uv_tty_set_mode:_CI.fatptr->Unsigned.uint32->int="luv_stub_108_uv_tty_set_mode"externalluv_stub_109_uv_tty_reset_mode:unit->int="luv_stub_109_uv_tty_reset_mode"externalluv_stub_110_uv_tty_get_winsize:_CI.fatptr->_CI.fatptr->_CI.fatptr->int="luv_stub_110_uv_tty_get_winsize"externalluv_stub_111_uv_tty_set_vterm_state:Unsigned.uint32->unit="luv_stub_111_uv_tty_set_vterm_state"externalluv_stub_112_uv_tty_get_vterm_state:_CI.fatptr->int="luv_stub_112_uv_tty_get_vterm_state"externalluv_stub_113_uv_udp_init:_CI.fatptr->_CI.fatptr->int="luv_stub_113_uv_udp_init"externalluv_stub_114_uv_udp_init_ex:_CI.fatptr->_CI.fatptr->Unsigned.uint->int="luv_stub_114_uv_udp_init_ex"externalluv_stub_115_uv_udp_open:_CI.fatptr->_CI.fatptr->int="luv_stub_115_uv_udp_open"externalluv_stub_116_uv_udp_bind:_CI.fatptr->_CI.fatptr->int->int="luv_stub_116_uv_udp_bind"externalluv_stub_117_uv_udp_connect:_CI.fatptr->_CI.fatptr->int="luv_stub_117_uv_udp_connect"externalluv_stub_118_uv_udp_getpeername:_CI.fatptr->_CI.fatptr->_CI.fatptr->int="luv_stub_118_uv_udp_getpeername"externalluv_stub_119_uv_udp_getsockname:_CI.fatptr->_CI.fatptr->_CI.fatptr->int="luv_stub_119_uv_udp_getsockname"externalluv_stub_120_uv_udp_set_membership:_CI.fatptr->stringCI.ocaml->stringCI.ocaml->Unsigned.uint32->int="luv_stub_120_uv_udp_set_membership"externalluv_stub_121_uv_udp_set_source_membership:_CI.fatptr->stringCI.ocaml->stringCI.ocaml->stringCI.ocaml->Unsigned.uint32->int="luv_stub_121_uv_udp_set_source_membership"externalluv_stub_122_uv_udp_set_multicast_loop:_CI.fatptr->bool->int="luv_stub_122_uv_udp_set_multicast_loop"externalluv_stub_123_uv_udp_set_multicast_ttl:_CI.fatptr->int->int="luv_stub_123_uv_udp_set_multicast_ttl"externalluv_stub_124_uv_udp_set_multicast_interface:_CI.fatptr->stringCI.ocaml->int="luv_stub_124_uv_udp_set_multicast_interface"externalluv_stub_125_uv_udp_set_broadcast:_CI.fatptr->bool->int="luv_stub_125_uv_udp_set_broadcast"externalluv_stub_126_uv_udp_set_ttl:_CI.fatptr->int->int="luv_stub_126_uv_udp_set_ttl"externalluv_stub_127_luv_get_send_trampoline:unit->CI.voidp="luv_stub_127_luv_get_send_trampoline"externalluv_stub_128_uv_udp_send:_CI.fatptr->_CI.fatptr->_CI.fatptr->Unsigned.uint->_CI.fatptr->_CI.fatfunptr->int="luv_stub_128_uv_udp_send_byte6""luv_stub_128_uv_udp_send"externalluv_stub_129_uv_udp_try_send:_CI.fatptr->_CI.fatptr->Unsigned.uint->_CI.fatptr->int="luv_stub_129_uv_udp_try_send"externalluv_stub_130_luv_get_recv_trampoline:unit->CI.voidp="luv_stub_130_luv_get_recv_trampoline"externalluv_stub_131_luv_udp_recv_start:_CI.fatptr->_CI.fatfunptr->_CI.fatfunptr->int="luv_stub_131_luv_udp_recv_start"externalluv_stub_132_uv_udp_recv_stop:_CI.fatptr->int="luv_stub_132_uv_udp_recv_stop"externalluv_stub_133_uv_udp_using_recvmmsg:_CI.fatptr->bool="luv_stub_133_uv_udp_using_recvmmsg"externalluv_stub_134_uv_udp_get_send_queue_size:_CI.fatptr->Unsigned.size_t="luv_stub_134_uv_udp_get_send_queue_size"externalluv_stub_135_uv_udp_get_send_queue_count:_CI.fatptr->Unsigned.size_t="luv_stub_135_uv_udp_get_send_queue_count"externalluv_stub_136_luv_get_exit_trampoline:unit->CI.voidp="luv_stub_136_luv_get_exit_trampoline"externalluv_stub_137_luv_null_exit_trampoline:unit->CI.voidp="luv_stub_137_luv_null_exit_trampoline"externalluv_stub_138_uv_disable_stdio_inheritance:unit->unit="luv_stub_138_uv_disable_stdio_inheritance"externalluv_stub_139_luv_spawn:_CI.fatptr->_CI.fatptr->_CI.fatfunptr->_CI.fatptr->_CI.fatptr->int->_CI.fatptr->int->bool->_CI.fatptr->bool->int->int->_CI.fatptr->int->int->int="luv_stub_139_luv_spawn_byte16""luv_stub_139_luv_spawn"externalluv_stub_140_uv_process_kill:_CI.fatptr->int->int="luv_stub_140_uv_process_kill"externalluv_stub_141_uv_kill:int->int->int="luv_stub_141_uv_kill"externalluv_stub_142_uv_process_get_pid:_CI.fatptr->int="luv_stub_142_uv_process_get_pid"externalluv_stub_143_luv_get_fs_event_trampoline:unit->CI.voidp="luv_stub_143_luv_get_fs_event_trampoline"externalluv_stub_144_uv_fs_event_init:_CI.fatptr->_CI.fatptr->int="luv_stub_144_uv_fs_event_init"externalluv_stub_145_luv_fs_event_start:_CI.fatptr->_CI.fatfunptr->stringCI.ocaml->int->int="luv_stub_145_luv_fs_event_start"externalluv_stub_146_uv_fs_event_stop:_CI.fatptr->int="luv_stub_146_uv_fs_event_stop"externalluv_stub_147_luv_get_fs_poll_trampoline:unit->CI.voidp="luv_stub_147_luv_get_fs_poll_trampoline"externalluv_stub_148_uv_fs_poll_init:_CI.fatptr->_CI.fatptr->int="luv_stub_148_uv_fs_poll_init"externalluv_stub_149_luv_fs_poll_start:_CI.fatptr->_CI.fatfunptr->stringCI.ocaml->int->int="luv_stub_149_luv_fs_poll_start"externalluv_stub_150_uv_fs_poll_stop:_CI.fatptr->int="luv_stub_150_uv_fs_poll_stop"externalluv_stub_151_luv_get_getaddrinfo_trampoline:unit->CI.voidp="luv_stub_151_luv_get_getaddrinfo_trampoline"externalluv_stub_152_uv_getaddrinfo:_CI.fatptr->_CI.fatptr->_CI.fatfunptr->_CI.fatptr->_CI.fatptr->_CI.fatptr->int="luv_stub_152_uv_getaddrinfo_byte6""luv_stub_152_uv_getaddrinfo"externalluv_stub_153_uv_freeaddrinfo:_CI.fatptr->unit="luv_stub_153_uv_freeaddrinfo"externalluv_stub_154_luv_get_getnameinfo_trampoline:unit->CI.voidp="luv_stub_154_luv_get_getnameinfo_trampoline"externalluv_stub_155_luv_getnameinfo:_CI.fatptr->_CI.fatptr->_CI.fatfunptr->_CI.fatptr->int->int="luv_stub_155_luv_getnameinfo"externalluv_stub_156_uv_dlopen:stringCI.ocaml->_CI.fatptr->bool="luv_stub_156_uv_dlopen"externalluv_stub_157_uv_dlclose:_CI.fatptr->unit="luv_stub_157_uv_dlclose"externalluv_stub_158_uv_dlsym:_CI.fatptr->stringCI.ocaml->_CI.fatptr->bool="luv_stub_158_uv_dlsym"externalluv_stub_159_luv_dlerror:_CI.fatptr->CI.voidp="luv_stub_159_luv_dlerror"externalluv_stub_160_uv_get_osfhandle:int->CI.managed_buffer="luv_stub_160_uv_get_osfhandle"externalluv_stub_161_uv_open_osfhandle:_CI.fatptr->int="luv_stub_161_uv_open_osfhandle"externalluv_stub_162_luv_is_invalid_handle_value:_CI.fatptr->bool="luv_stub_162_luv_is_invalid_handle_value"externalluv_stub_163_luv_is_invalid_socket_value:_CI.fatptr->bool="luv_stub_163_luv_is_invalid_socket_value"externalluv_stub_164_memcpy:bytesCI.ocaml->_CI.fatptr->int->unit="luv_stub_164_memcpy"externalluv_stub_165_memcpy:_CI.fatptr->bytesCI.ocaml->int->unit="luv_stub_165_memcpy"externalluv_stub_166_luv_get_work_trampoline:unit->CI.voidp="luv_stub_166_luv_get_work_trampoline"externalluv_stub_167_luv_get_after_work_trampoline:unit->CI.voidp="luv_stub_167_luv_get_after_work_trampoline"externalluv_stub_168_luv_get_c_work_trampoline:unit->CI.voidp="luv_stub_168_luv_get_c_work_trampoline"externalluv_stub_169_luv_get_after_c_work_trampoline:unit->CI.voidp="luv_stub_169_luv_get_after_c_work_trampoline"externalluv_stub_170_luv_add_c_function_and_argument:_CI.fatptr->nativeint->nativeint->bool="luv_stub_170_luv_add_c_function_and_argument"externalluv_stub_171_uv_queue_work:_CI.fatptr->_CI.fatptr->_CI.fatfunptr->_CI.fatfunptr->int="luv_stub_171_uv_queue_work"externalluv_stub_172_luv_get_thread_trampoline:unit->CI.voidp="luv_stub_172_luv_get_thread_trampoline"externalluv_stub_173_uv_thread_create_ex:_CI.fatptr->_CI.fatptr->_CI.fatfunptr->_CI.fatptr->int="luv_stub_173_uv_thread_create_ex"externalluv_stub_174_luv_thread_create_c:_CI.fatptr->_CI.fatptr->nativeint->nativeint->int="luv_stub_174_luv_thread_create_c"externalluv_stub_175_uv_thread_self:unit->CI.managed_buffer="luv_stub_175_uv_thread_self"externalluv_stub_176_uv_thread_equal:_CI.fatptr->_CI.fatptr->bool="luv_stub_176_uv_thread_equal"externalluv_stub_177_uv_key_create:_CI.fatptr->int="luv_stub_177_uv_key_create"externalluv_stub_178_uv_key_delete:_CI.fatptr->unit="luv_stub_178_uv_key_delete"externalluv_stub_179_uv_key_get:_CI.fatptr->CI.voidp="luv_stub_179_uv_key_get"externalluv_stub_180_uv_key_set:_CI.fatptr->_CI.fatptr->unit="luv_stub_180_uv_key_set"externalluv_stub_181_luv_get_once_trampoline:unit->CI.voidp="luv_stub_181_luv_get_once_trampoline"externalluv_stub_182_luv_once_init:_CI.fatptr->int="luv_stub_182_luv_once_init"externalluv_stub_183_uv_once:_CI.fatptr->_CI.fatfunptr->unit="luv_stub_183_uv_once"externalluv_stub_184_uv_mutex_init:_CI.fatptr->int="luv_stub_184_uv_mutex_init"externalluv_stub_185_uv_mutex_init_recursive:_CI.fatptr->int="luv_stub_185_uv_mutex_init_recursive"externalluv_stub_186_uv_mutex_destroy:_CI.fatptr->unit="luv_stub_186_uv_mutex_destroy"externalluv_stub_187_uv_mutex_trylock:_CI.fatptr->int="luv_stub_187_uv_mutex_trylock"externalluv_stub_188_uv_mutex_unlock:_CI.fatptr->unit="luv_stub_188_uv_mutex_unlock"externalluv_stub_189_uv_rwlock_init:_CI.fatptr->int="luv_stub_189_uv_rwlock_init"externalluv_stub_190_uv_rwlock_destroy:_CI.fatptr->unit="luv_stub_190_uv_rwlock_destroy"externalluv_stub_191_uv_rwlock_tryrdlock:_CI.fatptr->int="luv_stub_191_uv_rwlock_tryrdlock"externalluv_stub_192_uv_rwlock_rdunlock:_CI.fatptr->unit="luv_stub_192_uv_rwlock_rdunlock"externalluv_stub_193_uv_rwlock_trywrlock:_CI.fatptr->int="luv_stub_193_uv_rwlock_trywrlock"externalluv_stub_194_uv_rwlock_wrunlock:_CI.fatptr->unit="luv_stub_194_uv_rwlock_wrunlock"externalluv_stub_195_uv_sem_init:_CI.fatptr->Unsigned.uint->int="luv_stub_195_uv_sem_init"externalluv_stub_196_uv_sem_destroy:_CI.fatptr->unit="luv_stub_196_uv_sem_destroy"externalluv_stub_197_uv_sem_post:_CI.fatptr->unit="luv_stub_197_uv_sem_post"externalluv_stub_198_uv_sem_trywait:_CI.fatptr->int="luv_stub_198_uv_sem_trywait"externalluv_stub_199_uv_cond_init:_CI.fatptr->int="luv_stub_199_uv_cond_init"externalluv_stub_200_uv_cond_destroy:_CI.fatptr->unit="luv_stub_200_uv_cond_destroy"externalluv_stub_201_uv_cond_signal:_CI.fatptr->unit="luv_stub_201_uv_cond_signal"externalluv_stub_202_uv_cond_broadcast:_CI.fatptr->unit="luv_stub_202_uv_cond_broadcast"externalluv_stub_203_uv_barrier_init:_CI.fatptr->Unsigned.uint->int="luv_stub_203_uv_barrier_init"externalluv_stub_204_uv_barrier_destroy:_CI.fatptr->unit="luv_stub_204_uv_barrier_destroy"externalluv_stub_205_uv_ip4_addr:stringCI.ocaml->int->_CI.fatptr->int="luv_stub_205_uv_ip4_addr"externalluv_stub_206_uv_ip6_addr:stringCI.ocaml->int->_CI.fatptr->int="luv_stub_206_uv_ip6_addr"externalluv_stub_207_uv_ip4_name:_CI.fatptr->bytesCI.ocaml->Unsigned.size_t->int="luv_stub_207_uv_ip4_name"externalluv_stub_208_uv_ip6_name:_CI.fatptr->bytesCI.ocaml->Unsigned.size_t->int="luv_stub_208_uv_ip6_name"externalluv_stub_209_memcpy:_CI.fatptr->_CI.fatptr->int->unit="luv_stub_209_memcpy"externalluv_stub_210_ntohs:Unsigned.ushort->Unsigned.ushort="luv_stub_210_ntohs"externalluv_stub_211_luv_sa_family_to_int:_CI.fatptr->int="luv_stub_211_luv_sa_family_to_int"externalluv_stub_212_uv_resident_set_memory:_CI.fatptr->int="luv_stub_212_uv_resident_set_memory"externalluv_stub_213_uv_uptime:_CI.fatptr->int="luv_stub_213_uv_uptime"externalluv_stub_214_uv_loadavg:_CI.fatptr->unit="luv_stub_214_uv_loadavg"externalluv_stub_215_uv_get_free_memory:unit->Unsigned.uint64="luv_stub_215_uv_get_free_memory"externalluv_stub_216_uv_get_total_memory:unit->Unsigned.uint64="luv_stub_216_uv_get_total_memory"externalluv_stub_217_uv_get_constrained_memory:unit->Unsigned.uint64="luv_stub_217_uv_get_constrained_memory"externalluv_stub_218_uv_os_getpriority:int->_CI.fatptr->int="luv_stub_218_uv_os_getpriority"externalluv_stub_219_uv_os_setpriority:int->int->int="luv_stub_219_uv_os_setpriority"externalluv_stub_220_uv_getrusage:_CI.fatptr->int="luv_stub_220_uv_getrusage"externalluv_stub_221_uv_os_getpid:unit->int="luv_stub_221_uv_os_getpid"externalluv_stub_222_uv_os_getppid:unit->int="luv_stub_222_uv_os_getppid"externalluv_stub_223_uv_cpu_info:_CI.fatptr->_CI.fatptr->int="luv_stub_223_uv_cpu_info"externalluv_stub_224_uv_free_cpu_info:_CI.fatptr->int->unit="luv_stub_224_uv_free_cpu_info"externalluv_stub_225_uv_interface_addresses:_CI.fatptr->_CI.fatptr->int="luv_stub_225_uv_interface_addresses"externalluv_stub_226_uv_free_interface_addresses:_CI.fatptr->int->unit="luv_stub_226_uv_free_interface_addresses"externalluv_stub_227_uv_if_indextoname:Unsigned.uint->bytesCI.ocaml->_CI.fatptr->int="luv_stub_227_uv_if_indextoname"externalluv_stub_228_uv_if_indextoiid:Unsigned.uint->bytesCI.ocaml->_CI.fatptr->int="luv_stub_228_uv_if_indextoiid"externalluv_stub_229_uv_os_gethostname:bytesCI.ocaml->_CI.fatptr->int="luv_stub_229_uv_os_gethostname"externalluv_stub_230_uv_exepath:bytesCI.ocaml->_CI.fatptr->int="luv_stub_230_uv_exepath"externalluv_stub_231_uv_cwd:bytesCI.ocaml->_CI.fatptr->int="luv_stub_231_uv_cwd"externalluv_stub_232_uv_chdir:stringCI.ocaml->int="luv_stub_232_uv_chdir"externalluv_stub_233_uv_os_homedir:bytesCI.ocaml->_CI.fatptr->int="luv_stub_233_uv_os_homedir"externalluv_stub_234_uv_os_tmpdir:bytesCI.ocaml->_CI.fatptr->int="luv_stub_234_uv_os_tmpdir"externalluv_stub_235_uv_os_get_passwd:_CI.fatptr->int="luv_stub_235_uv_os_get_passwd"externalluv_stub_236_uv_os_free_passwd:_CI.fatptr->unit="luv_stub_236_uv_os_free_passwd"externalluv_stub_237_uv_os_getenv:stringCI.ocaml->bytesCI.ocaml->_CI.fatptr->int="luv_stub_237_uv_os_getenv"externalluv_stub_238_uv_os_setenv:stringCI.ocaml->stringCI.ocaml->int="luv_stub_238_uv_os_setenv"externalluv_stub_239_uv_os_unsetenv:stringCI.ocaml->int="luv_stub_239_uv_os_unsetenv"externalluv_stub_240_uv_os_environ:_CI.fatptr->_CI.fatptr->int="luv_stub_240_uv_os_environ"externalluv_stub_241_uv_os_free_environ:_CI.fatptr->int->unit="luv_stub_241_uv_os_free_environ"externalluv_stub_242_luv_os_uname:bytesCI.ocaml->int="luv_stub_242_luv_os_uname"externalluv_stub_243_uv_gettimeofday:_CI.fatptr->int="luv_stub_243_uv_gettimeofday"externalluv_stub_244_uv_hrtime:unit->Unsigned.uint64="luv_stub_244_uv_hrtime"externalluv_stub_245_luv_get_random_trampoline:unit->CI.voidp="luv_stub_245_luv_get_random_trampoline"externalluv_stub_246_luv_null_random_trampoline:unit->CI.voidp="luv_stub_246_luv_null_random_trampoline"externalluv_stub_247_uv_random:_CI.fatptr->_CI.fatptr->_CI.fatptr->Unsigned.size_t->Unsigned.uint->_CI.fatfunptr->int="luv_stub_247_uv_random_byte6""luv_stub_247_uv_random"externalluv_stub_248_uv_metrics_idle_time:_CI.fatptr->Unsigned.uint64="luv_stub_248_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_248_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_247_uv_randomx4x6x8x9x10x12)|Function(CI.Void,Returns(CI.Funptrx14)),"luv_null_random_trampoline"->(funx13->CI.make_fun_ptrx14(luv_stub_246_luv_null_random_trampolinex13))|Function(CI.Void,Returns(CI.Funptrx16)),"luv_get_random_trampoline"->(funx15->CI.make_fun_ptrx16(luv_stub_245_luv_get_random_trampolinex15))|Function(CI.Void,Returns(CI.PrimitiveCI.Uint64_t)),"uv_hrtime"->luv_stub_244_uv_hrtime|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_gettimeofday"->(funx18->letCI.CPointerx19=x18inluv_stub_243_uv_gettimeofdayx19)|Function(CI.OCamlCI.Bytes,Returns(CI.PrimitiveCI.Int)),"luv_os_uname"->luv_stub_242_luv_os_uname|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void)),"uv_os_free_environ"->(funx21x23->letCI.CPointerx22=x21inluv_stub_241_uv_os_free_environx22x23)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_environ"->(funx24x26->letCI.CPointerx27=x26inletCI.CPointerx25=x24inluv_stub_240_uv_os_environx25x27)|Function(CI.OCamlCI.String,Returns(CI.PrimitiveCI.Int)),"uv_os_unsetenv"->luv_stub_239_uv_os_unsetenv|Function(CI.OCamlCI.String,Function(CI.OCamlCI.String,Returns(CI.PrimitiveCI.Int))),"uv_os_setenv"->luv_stub_238_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_237_uv_os_getenvx31x32x34)|Function(CI.Pointer_,ReturnsCI.Void),"uv_os_free_passwd"->(funx35->letCI.CPointerx36=x35inluv_stub_236_uv_os_free_passwdx36)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_os_get_passwd"->(funx37->letCI.CPointerx38=x37inluv_stub_235_uv_os_get_passwdx38)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_tmpdir"->(funx39x40->letCI.CPointerx41=x40inluv_stub_234_uv_os_tmpdirx39x41)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_homedir"->(funx42x43->letCI.CPointerx44=x43inluv_stub_233_uv_os_homedirx42x44)|Function(CI.OCamlCI.String,Returns(CI.PrimitiveCI.Int)),"uv_chdir"->luv_stub_232_uv_chdir|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_cwd"->(funx46x47->letCI.CPointerx48=x47inluv_stub_231_uv_cwdx46x48)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_exepath"->(funx49x50->letCI.CPointerx51=x50inluv_stub_230_uv_exepathx49x51)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_gethostname"->(funx52x53->letCI.CPointerx54=x53inluv_stub_229_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_228_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_227_uv_if_indextonamex59x60x62)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void)),"uv_free_interface_addresses"->(funx63x65->letCI.CPointerx64=x63inluv_stub_226_uv_free_interface_addressesx64x65)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_interface_addresses"->(funx66x68->letCI.CPointerx69=x68inletCI.CPointerx67=x66inluv_stub_225_uv_interface_addressesx67x69)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void)),"uv_free_cpu_info"->(funx70x72->letCI.CPointerx71=x70inluv_stub_224_uv_free_cpu_infox71x72)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_cpu_info"->(funx73x75->letCI.CPointerx76=x75inletCI.CPointerx74=x73inluv_stub_223_uv_cpu_infox74x76)|Function(CI.Void,Returns(CI.PrimitiveCI.Int)),"uv_os_getppid"->luv_stub_222_uv_os_getppid|Function(CI.Void,Returns(CI.PrimitiveCI.Int)),"uv_os_getpid"->luv_stub_221_uv_os_getpid|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_getrusage"->(funx79->letCI.CPointerx80=x79inluv_stub_220_uv_getrusagex80)|Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_os_setpriority"->luv_stub_219_uv_os_setpriority|Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_getpriority"->(funx83x84->letCI.CPointerx85=x84inluv_stub_218_uv_os_getpriorityx83x85)|Function(CI.Void,Returns(CI.PrimitiveCI.Uint64_t)),"uv_get_constrained_memory"->luv_stub_217_uv_get_constrained_memory|Function(CI.Void,Returns(CI.PrimitiveCI.Uint64_t)),"uv_get_total_memory"->luv_stub_216_uv_get_total_memory|Function(CI.Void,Returns(CI.PrimitiveCI.Uint64_t)),"uv_get_free_memory"->luv_stub_215_uv_get_free_memory|Function(CI.Pointer_,ReturnsCI.Void),"uv_loadavg"->(funx89->letCI.CPointerx90=x89inluv_stub_214_uv_loadavgx90)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_uptime"->(funx91->letCI.CPointerx92=x91inluv_stub_213_uv_uptimex92)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_resident_set_memory"->(funx93->letCI.CPointerx94=x93inluv_stub_212_uv_resident_set_memoryx94)|Function(CI.View{CI.ty=CI.Struct_;write=x96;_},Returns(CI.PrimitiveCI.Int)),"luv_sa_family_to_int"->(funx95->letCI.CPointerx98=Ctypes.addr(x96x95)inletx97=x98inluv_stub_211_luv_sa_family_to_intx97)|Function(CI.PrimitiveCI.Ushort,Returns(CI.PrimitiveCI.Ushort)),"ntohs"->luv_stub_210_ntohs|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void))),"memcpy"->(funx100x102x104->letCI.CPointerx103=x102inletCI.CPointerx101=x100inluv_stub_209_memcpyx101x103x104)|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.PrimitiveCI.Size_t,Returns(CI.PrimitiveCI.Int)))),"uv_ip6_name"->(funx105x107x108->letCI.CPointerx106=x105inluv_stub_208_uv_ip6_namex106x107x108)|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.PrimitiveCI.Size_t,Returns(CI.PrimitiveCI.Int)))),"uv_ip4_name"->(funx109x111x112->letCI.CPointerx110=x109inluv_stub_207_uv_ip4_namex110x111x112)|Function(CI.OCamlCI.String,Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_ip6_addr"->(funx113x114x115->letCI.CPointerx116=x115inluv_stub_206_uv_ip6_addrx113x114x116)|Function(CI.OCamlCI.String,Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_ip4_addr"->(funx117x118x119->letCI.CPointerx120=x119inluv_stub_205_uv_ip4_addrx117x118x120)|Function(CI.Pointer_,ReturnsCI.Void),"uv_barrier_destroy"->(funx121->letCI.CPointerx122=x121inluv_stub_204_uv_barrier_destroyx122)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int))),"uv_barrier_init"->(funx123x125->letCI.CPointerx124=x123inluv_stub_203_uv_barrier_initx124x125)|Function(CI.Pointer_,ReturnsCI.Void),"uv_cond_broadcast"->(funx126->letCI.CPointerx127=x126inluv_stub_202_uv_cond_broadcastx127)|Function(CI.Pointer_,ReturnsCI.Void),"uv_cond_signal"->(funx128->letCI.CPointerx129=x128inluv_stub_201_uv_cond_signalx129)|Function(CI.Pointer_,ReturnsCI.Void),"uv_cond_destroy"->(funx130->letCI.CPointerx131=x130inluv_stub_200_uv_cond_destroyx131)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_cond_init"->(funx132->letCI.CPointerx133=x132inluv_stub_199_uv_cond_initx133)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_sem_trywait"->(funx134->letCI.CPointerx135=x134inluv_stub_198_uv_sem_trywaitx135)|Function(CI.Pointer_,ReturnsCI.Void),"uv_sem_post"->(funx136->letCI.CPointerx137=x136inluv_stub_197_uv_sem_postx137)|Function(CI.Pointer_,ReturnsCI.Void),"uv_sem_destroy"->(funx138->letCI.CPointerx139=x138inluv_stub_196_uv_sem_destroyx139)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int))),"uv_sem_init"->(funx140x142->letCI.CPointerx141=x140inluv_stub_195_uv_sem_initx141x142)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_wrunlock"->(funx143->letCI.CPointerx144=x143inluv_stub_194_uv_rwlock_wrunlockx144)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_rwlock_trywrlock"->(funx145->letCI.CPointerx146=x145inluv_stub_193_uv_rwlock_trywrlockx146)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_rdunlock"->(funx147->letCI.CPointerx148=x147inluv_stub_192_uv_rwlock_rdunlockx148)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_rwlock_tryrdlock"->(funx149->letCI.CPointerx150=x149inluv_stub_191_uv_rwlock_tryrdlockx150)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_destroy"->(funx151->letCI.CPointerx152=x151inluv_stub_190_uv_rwlock_destroyx152)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_rwlock_init"->(funx153->letCI.CPointerx154=x153inluv_stub_189_uv_rwlock_initx154)|Function(CI.Pointer_,ReturnsCI.Void),"uv_mutex_unlock"->(funx155->letCI.CPointerx156=x155inluv_stub_188_uv_mutex_unlockx156)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_mutex_trylock"->(funx157->letCI.CPointerx158=x157inluv_stub_187_uv_mutex_trylockx158)|Function(CI.Pointer_,ReturnsCI.Void),"uv_mutex_destroy"->(funx159->letCI.CPointerx160=x159inluv_stub_186_uv_mutex_destroyx160)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_mutex_init_recursive"->(funx161->letCI.CPointerx162=x161inluv_stub_185_uv_mutex_init_recursivex162)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_mutex_init"->(funx163->letCI.CPointerx164=x163inluv_stub_184_uv_mutex_initx164)|Function(CI.Pointer_,Function(CI.Funptr_,ReturnsCI.Void)),"uv_once"->(funx165x167->letCI.Static_funptrx168=x167inletCI.CPointerx166=x165inluv_stub_183_uv_oncex166x168)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"luv_once_init"->(funx169->letCI.CPointerx170=x169inluv_stub_182_luv_once_initx170)|Function(CI.Void,Returns(CI.Funptrx172)),"luv_get_once_trampoline"->(funx171->CI.make_fun_ptrx172(luv_stub_181_luv_get_once_trampolinex171))|Function(CI.Pointer_,Function(CI.Pointer_,ReturnsCI.Void)),"uv_key_set"->(funx173x175->letCI.CPointerx176=x175inletCI.CPointerx174=x173inluv_stub_180_uv_key_setx174x176)|Function(CI.Pointer_,Returns(CI.Pointerx179)),"uv_key_get"->(funx177->letCI.CPointerx178=x177inCI.make_ptrx179(luv_stub_179_uv_key_getx178))|Function(CI.Pointer_,ReturnsCI.Void),"uv_key_delete"->(funx180->letCI.CPointerx181=x180inluv_stub_178_uv_key_deletex181)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_key_create"->(funx182->letCI.CPointerx183=x182inluv_stub_177_uv_key_createx183)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool))),"uv_thread_equal"->(funx184x186->letCI.CPointerx187=x186inletCI.CPointerx185=x184inluv_stub_176_uv_thread_equalx185x187)|Function(CI.Void,Returns(CI.View{CI.ty=(CI.Struct_asx189);read=x190;_})),"uv_thread_self"->(funx188->x190(CI.make_structuredx189(luv_stub_175_uv_thread_selfx188)))|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Nativeint,Function(CI.PrimitiveCI.Nativeint,Returns(CI.PrimitiveCI.Int))))),"luv_thread_create_c"->(funx191x193x195x196->letCI.CPointerx194=x193inletCI.CPointerx192=x191inluv_stub_174_luv_thread_create_cx192x194x195x196)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))))),"uv_thread_create_ex"->(funx197x199x201x203->letCI.CPointerx204=x203inletCI.Static_funptrx202=x201inletCI.CPointerx200=x199inletCI.CPointerx198=x197inluv_stub_173_uv_thread_create_exx198x200x202x204)|Function(CI.Void,Returns(CI.Funptrx206)),"luv_get_thread_trampoline"->(funx205->CI.make_fun_ptrx206(luv_stub_172_luv_get_thread_trampolinex205))|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_queue_work"->(funx207x209x211x213->letCI.Static_funptrx214=x213inletCI.Static_funptrx212=x211inletCI.CPointerx210=x209inletCI.CPointerx208=x207inluv_stub_171_uv_queue_workx208x210x212x214)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Nativeint,Function(CI.PrimitiveCI.Nativeint,Returns(CI.PrimitiveCI.Bool)))),"luv_add_c_function_and_argument"->(funx215x217x218->letCI.CPointerx216=x215inluv_stub_170_luv_add_c_function_and_argumentx216x217x218)|Function(CI.Void,Returns(CI.Funptrx220)),"luv_get_after_c_work_trampoline"->(funx219->CI.make_fun_ptrx220(luv_stub_169_luv_get_after_c_work_trampolinex219))|Function(CI.Void,Returns(CI.Funptrx222)),"luv_get_c_work_trampoline"->(funx221->CI.make_fun_ptrx222(luv_stub_168_luv_get_c_work_trampolinex221))|Function(CI.Void,Returns(CI.Funptrx224)),"luv_get_after_work_trampoline"->(funx223->CI.make_fun_ptrx224(luv_stub_167_luv_get_after_work_trampolinex223))|Function(CI.Void,Returns(CI.Funptrx226)),"luv_get_work_trampoline"->(funx225->CI.make_fun_ptrx226(luv_stub_166_luv_get_work_trampolinex225))|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.PrimitiveCI.Int,ReturnsCI.Void))),"memcpy"->(funx227x229x230->letCI.CPointerx228=x227inluv_stub_165_memcpyx228x229x230)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void))),"memcpy"->(funx231x232x234->letCI.CPointerx233=x232inluv_stub_164_memcpyx231x233x234)|Function(CI.View{CI.ty=CI.Struct_;write=x236;_},Returns(CI.PrimitiveCI.Bool)),"luv_is_invalid_socket_value"->(funx235->letCI.CPointerx238=Ctypes.addr(x236x235)inletx237=x238inluv_stub_163_luv_is_invalid_socket_valuex237)|Function(CI.View{CI.ty=CI.Struct_;write=x240;_},Returns(CI.PrimitiveCI.Bool)),"luv_is_invalid_handle_value"->(funx239->letCI.CPointerx242=Ctypes.addr(x240x239)inletx241=x242inluv_stub_162_luv_is_invalid_handle_valuex241)|Function(CI.View{CI.ty=CI.Struct_;write=x244;_},Returns(CI.PrimitiveCI.Int)),"uv_open_osfhandle"->(funx243->letCI.CPointerx246=Ctypes.addr(x244x243)inletx245=x246inluv_stub_161_uv_open_osfhandlex245)|Function(CI.PrimitiveCI.Int,Returns(CI.View{CI.ty=(CI.Struct_asx248);read=x249;_})),"uv_get_osfhandle"->(funx247->x249(CI.make_structuredx248(luv_stub_160_uv_get_osfhandlex247)))|Function(CI.Pointer_,Returns(CI.View{CI.ty=CI.Pointerx252;read=x253;_})),"luv_dlerror"->(funx250->letCI.CPointerx251=x250inx253(CI.make_ptrx252(luv_stub_159_luv_dlerrorx251)))|Function(CI.Pointer_,Function(CI.OCamlCI.String,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)))),"uv_dlsym"->(funx254x256x257->letCI.CPointerx258=x257inletCI.CPointerx255=x254inluv_stub_158_uv_dlsymx255x256x258)|Function(CI.Pointer_,ReturnsCI.Void),"uv_dlclose"->(funx259->letCI.CPointerx260=x259inluv_stub_157_uv_dlclosex260)|Function(CI.OCamlCI.String,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool))),"uv_dlopen"->(funx261x262->letCI.CPointerx263=x262inluv_stub_156_uv_dlopenx261x263)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))))),"luv_getnameinfo"->(funx264x266x268x270x272->letCI.CPointerx271=x270inletCI.Static_funptrx269=x268inletCI.CPointerx267=x266inletCI.CPointerx265=x264inluv_stub_155_luv_getnameinfox265x267x269x271x272)|Function(CI.Void,Returns(CI.Funptrx274)),"luv_get_getnameinfo_trampoline"->(funx273->CI.make_fun_ptrx274(luv_stub_154_luv_get_getnameinfo_trampolinex273))|Function(CI.Pointer_,ReturnsCI.Void),"uv_freeaddrinfo"->(funx275->letCI.CPointerx276=x275inluv_stub_153_uv_freeaddrinfox276)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.View{CI.ty=CI.Pointer_;write=x284;_},Function(CI.View{CI.ty=CI.Pointer_;write=x288;_},Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))))))),"uv_getaddrinfo"->(funx277x279x281x283x287x291->letCI.CPointerx292=x291inletCI.CPointerx290=x288x287inletCI.CPointerx286=x284x283inletCI.Static_funptrx282=x281inletCI.CPointerx280=x279inletCI.CPointerx278=x277inletx285=x286inletx289=x290inluv_stub_152_uv_getaddrinfox278x280x282x285x289x292)|Function(CI.Void,Returns(CI.Funptrx294)),"luv_get_getaddrinfo_trampoline"->(funx293->CI.make_fun_ptrx294(luv_stub_151_luv_get_getaddrinfo_trampolinex293))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_fs_poll_stop"->(funx295->letCI.CPointerx296=x295inluv_stub_150_uv_fs_poll_stopx296)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.OCamlCI.String,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))))),"luv_fs_poll_start"->(funx297x299x301x302->letCI.Static_funptrx300=x299inletCI.CPointerx298=x297inluv_stub_149_luv_fs_poll_startx298x300x301x302)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_fs_poll_init"->(funx303x305->letCI.CPointerx306=x305inletCI.CPointerx304=x303inluv_stub_148_uv_fs_poll_initx304x306)|Function(CI.Void,Returns(CI.Funptrx308)),"luv_get_fs_poll_trampoline"->(funx307->CI.make_fun_ptrx308(luv_stub_147_luv_get_fs_poll_trampolinex307))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_fs_event_stop"->(funx309->letCI.CPointerx310=x309inluv_stub_146_uv_fs_event_stopx310)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.OCamlCI.String,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))))),"luv_fs_event_start"->(funx311x313x315x316->letCI.Static_funptrx314=x313inletCI.CPointerx312=x311inluv_stub_145_luv_fs_event_startx312x314x315x316)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_fs_event_init"->(funx317x319->letCI.CPointerx320=x319inletCI.CPointerx318=x317inluv_stub_144_uv_fs_event_initx318x320)|Function(CI.Void,Returns(CI.Funptrx322)),"luv_get_fs_event_trampoline"->(funx321->CI.make_fun_ptrx322(luv_stub_143_luv_get_fs_event_trampolinex321))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_process_get_pid"->(funx323->letCI.CPointerx324=x323inluv_stub_142_uv_process_get_pidx324)|Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_kill"->luv_stub_141_uv_kill|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_process_kill"->(funx327x329->letCI.CPointerx328=x327inluv_stub_140_uv_process_killx328x329)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Bool,Function(CI.Pointer_,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"->(funx330x332x334x336x338x340x341x343x344x345x347x348x349x350x352x353->letCI.CPointerx351=x350inletCI.CPointerx346=x345inletCI.CPointerx342=x341inletCI.CPointerx339=x338inletCI.CPointerx337=x336inletCI.Static_funptrx335=x334inletCI.CPointerx333=x332inletCI.CPointerx331=x330inluv_stub_139_luv_spawnx331x333x335x337x339x340x342x343x344x346x347x348x349x351x352x353)|Function(CI.Void,ReturnsCI.Void),"uv_disable_stdio_inheritance"->luv_stub_138_uv_disable_stdio_inheritance|Function(CI.Void,Returns(CI.Funptrx356)),"luv_null_exit_trampoline"->(funx355->CI.make_fun_ptrx356(luv_stub_137_luv_null_exit_trampolinex355))|Function(CI.Void,Returns(CI.Funptrx358)),"luv_get_exit_trampoline"->(funx357->CI.make_fun_ptrx358(luv_stub_136_luv_get_exit_trampolinex357))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Size_t)),"uv_udp_get_send_queue_count"->(funx359->letCI.CPointerx360=x359inluv_stub_135_uv_udp_get_send_queue_countx360)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Size_t)),"uv_udp_get_send_queue_size"->(funx361->letCI.CPointerx362=x361inluv_stub_134_uv_udp_get_send_queue_sizex362)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_udp_using_recvmmsg"->(funx363->letCI.CPointerx364=x363inluv_stub_133_uv_udp_using_recvmmsgx364)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_udp_recv_stop"->(funx365->letCI.CPointerx366=x365inluv_stub_132_uv_udp_recv_stopx366)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"luv_udp_recv_start"->(funx367x369x371->letCI.Static_funptrx372=x371inletCI.Static_funptrx370=x369inletCI.CPointerx368=x367inluv_stub_131_luv_udp_recv_startx368x370x372)|Function(CI.Void,Returns(CI.Funptrx374)),"luv_get_recv_trampoline"->(funx373->CI.make_fun_ptrx374(luv_stub_130_luv_get_recv_trampolinex373))|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))))),"uv_udp_try_send"->(funx375x377x379x380->letCI.CPointerx381=x380inletCI.CPointerx378=x377inletCI.CPointerx376=x375inluv_stub_129_uv_udp_try_sendx376x378x379x381)|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"->(funx382x384x386x388x389x391->letCI.Static_funptrx392=x391inletCI.CPointerx390=x389inletCI.CPointerx387=x386inletCI.CPointerx385=x384inletCI.CPointerx383=x382inluv_stub_128_uv_udp_sendx383x385x387x388x390x392)|Function(CI.Void,Returns(CI.Funptrx394)),"luv_get_send_trampoline"->(funx393->CI.make_fun_ptrx394(luv_stub_127_luv_get_send_trampolinex393))|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_ttl"->(funx395x397->letCI.CPointerx396=x395inluv_stub_126_uv_udp_set_ttlx396x397)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_broadcast"->(funx398x400->letCI.CPointerx399=x398inluv_stub_125_uv_udp_set_broadcastx399x400)|Function(CI.Pointer_,Function(CI.OCamlCI.String,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_multicast_interface"->(funx401x403->letCI.CPointerx402=x401inluv_stub_124_uv_udp_set_multicast_interfacex402x403)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_multicast_ttl"->(funx404x406->letCI.CPointerx405=x404inluv_stub_123_uv_udp_set_multicast_ttlx405x406)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_multicast_loop"->(funx407x409->letCI.CPointerx408=x407inluv_stub_122_uv_udp_set_multicast_loopx408x409)|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=x416;_},Returns(CI.PrimitiveCI.Int)))))),"uv_udp_set_source_membership"->(funx410x412x413x414x415->letCI.CPointerx411=x410inletx417=x416x415inluv_stub_121_uv_udp_set_source_membershipx411x412x413x414x417)|Function(CI.Pointer_,Function(CI.OCamlCI.String,Function(CI.OCamlCI.String,Function(CI.View{CI.ty=CI.PrimitiveCI.Uint32_t;write=x423;_},Returns(CI.PrimitiveCI.Int))))),"uv_udp_set_membership"->(funx418x420x421x422->letCI.CPointerx419=x418inletx424=x423x422inluv_stub_120_uv_udp_set_membershipx419x420x421x424)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_udp_getsockname"->(funx425x427x429->letCI.CPointerx430=x429inletCI.CPointerx428=x427inletCI.CPointerx426=x425inluv_stub_119_uv_udp_getsocknamex426x428x430)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_udp_getpeername"->(funx431x433x435->letCI.CPointerx436=x435inletCI.CPointerx434=x433inletCI.CPointerx432=x431inluv_stub_118_uv_udp_getpeernamex432x434x436)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_udp_connect"->(funx437x439->letCI.CPointerx440=x439inletCI.CPointerx438=x437inluv_stub_117_uv_udp_connectx438x440)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_udp_bind"->(funx441x443x445->letCI.CPointerx444=x443inletCI.CPointerx442=x441inluv_stub_116_uv_udp_bindx442x444x445)|Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Struct_;write=x449;_},Returns(CI.PrimitiveCI.Int))),"uv_udp_open"->(funx446x448->letCI.CPointerx451=Ctypes.addr(x449x448)inletCI.CPointerx447=x446inletx450=x451inluv_stub_115_uv_udp_openx447x450)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int)))),"uv_udp_init_ex"->(funx452x454x456->letCI.CPointerx455=x454inletCI.CPointerx453=x452inluv_stub_114_uv_udp_init_exx453x455x456)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_udp_init"->(funx457x459->letCI.CPointerx460=x459inletCI.CPointerx458=x457inluv_stub_113_uv_udp_initx458x460)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_tty_get_vterm_state"->(funx461->letCI.CPointerx462=x461inluv_stub_112_uv_tty_get_vterm_statex462)|Function(CI.View{CI.ty=CI.PrimitiveCI.Uint32_t;write=x464;_},ReturnsCI.Void),"uv_tty_set_vterm_state"->(funx463->letx465=x464x463inluv_stub_111_uv_tty_set_vterm_statex465)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_tty_get_winsize"->(funx466x468x470->letCI.CPointerx471=x470inletCI.CPointerx469=x468inletCI.CPointerx467=x466inluv_stub_110_uv_tty_get_winsizex467x469x471)|Function(CI.Void,Returns(CI.PrimitiveCI.Int)),"uv_tty_reset_mode"->luv_stub_109_uv_tty_reset_mode|Function(CI.Pointer_,Function(CI.View{CI.ty=CI.PrimitiveCI.Uint32_t;write=x476;_},Returns(CI.PrimitiveCI.Int))),"uv_tty_set_mode"->(funx473x475->letCI.CPointerx474=x473inletx477=x476x475inluv_stub_108_uv_tty_set_modex474x477)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))))),"uv_tty_init"->(funx478x480x482x483->letCI.CPointerx481=x480inletCI.CPointerx479=x478inluv_stub_107_uv_tty_initx479x481x482x483)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_pipe_chmod"->(funx484x486->letCI.CPointerx485=x484inluv_stub_106_uv_pipe_chmodx485x486)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_pipe_pending_type"->(funx487->letCI.CPointerx488=x487inluv_stub_105_uv_pipe_pending_typex488)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_pipe_pending_count"->(funx489->letCI.CPointerx490=x489inluv_stub_104_uv_pipe_pending_countx490)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void)),"uv_pipe_pending_instances"->(funx491x493->letCI.CPointerx492=x491inluv_stub_103_uv_pipe_pending_instancesx492x493)|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_pipe_getpeername"->(funx494x496x497->letCI.CPointerx498=x497inletCI.CPointerx495=x494inluv_stub_102_uv_pipe_getpeernamex495x496x498)|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_pipe_getsockname"->(funx499x501x502->letCI.CPointerx503=x502inletCI.CPointerx500=x499inluv_stub_101_uv_pipe_getsocknamex500x501x503)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.OCamlCI.String,Function(CI.Funptr_,ReturnsCI.Void)))),"uv_pipe_connect"->(funx504x506x508x509->letCI.Static_funptrx510=x509inletCI.CPointerx507=x506inletCI.CPointerx505=x504inluv_stub_100_uv_pipe_connectx505x507x508x510)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_pipe_open"->(funx511x513->letCI.CPointerx512=x511inluv_stub_99_uv_pipe_openx512x513)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_pipe"->(funx514x516x517->letCI.CPointerx515=x514inluv_stub_98_uv_pipex515x516x517)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int)))),"uv_pipe_init"->(funx518x520x522->letCI.CPointerx521=x520inletCI.CPointerx519=x518inluv_stub_97_uv_pipe_initx519x521x522)|Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))),"uv_tcp_close_reset"->(funx523x525->letCI.Static_funptrx526=x525inletCI.CPointerx524=x523inluv_stub_96_uv_tcp_close_resetx524x526)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_tcp_connect"->(funx527x529x531x533->letCI.Static_funptrx534=x533inletCI.CPointerx532=x531inletCI.CPointerx530=x529inletCI.CPointerx528=x527inluv_stub_95_uv_tcp_connectx528x530x532x534)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_getpeername"->(funx535x537x539->letCI.CPointerx540=x539inletCI.CPointerx538=x537inletCI.CPointerx536=x535inluv_stub_94_uv_tcp_getpeernamex536x538x540)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_getsockname"->(funx541x543x545->letCI.CPointerx546=x545inletCI.CPointerx544=x543inletCI.CPointerx542=x541inluv_stub_93_uv_tcp_getsocknamex542x544x546)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_bind"->(funx547x549x551->letCI.CPointerx550=x549inletCI.CPointerx548=x547inluv_stub_92_uv_tcp_bindx548x550x551)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_tcp_simultaneous_accepts"->(funx552x554->letCI.CPointerx553=x552inluv_stub_91_uv_tcp_simultaneous_acceptsx553x554)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_keepalive"->(funx555x557x558->letCI.CPointerx556=x555inluv_stub_90_uv_tcp_keepalivex556x557x558)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_tcp_nodelay"->(funx559x561->letCI.CPointerx560=x559inluv_stub_89_uv_tcp_nodelayx560x561)|Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))))),"uv_socketpair"->(funx562x563x564x566x567->letCI.CPointerx565=x564inluv_stub_88_uv_socketpairx562x563x565x566x567)|Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Struct_;write=x571;_},Returns(CI.PrimitiveCI.Int))),"uv_tcp_open"->(funx568x570->letCI.CPointerx573=Ctypes.addr(x571x570)inletCI.CPointerx569=x568inletx572=x573inluv_stub_87_uv_tcp_openx569x572)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_init_ex"->(funx574x576x578->letCI.CPointerx577=x576inletCI.CPointerx575=x574inluv_stub_86_uv_tcp_init_exx575x577x578)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_tcp_init"->(funx579x581->letCI.CPointerx582=x581inletCI.CPointerx580=x579inluv_stub_85_uv_tcp_initx580x582)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Size_t)),"uv_stream_get_write_queue_size"->(funx583->letCI.CPointerx584=x583inluv_stub_84_uv_stream_get_write_queue_sizex584)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_stream_set_blocking"->(funx585x587->letCI.CPointerx586=x585inluv_stub_83_uv_stream_set_blockingx586x587)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_is_writable"->(funx588->letCI.CPointerx589=x588inluv_stub_82_uv_is_writablex589)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_is_readable"->(funx590->letCI.CPointerx591=x590inluv_stub_81_uv_is_readablex591)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int)))),"uv_try_write"->(funx592x594x596->letCI.CPointerx595=x594inletCI.CPointerx593=x592inluv_stub_80_uv_try_writex593x595x596)|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"->(funx597x599x601x603x604x606->letCI.Static_funptrx607=x606inletCI.CPointerx605=x604inletCI.CPointerx602=x601inletCI.CPointerx600=x599inletCI.CPointerx598=x597inluv_stub_79_uv_write2x598x600x602x603x605x607)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_read_stop"->(funx608->letCI.CPointerx609=x608inluv_stub_78_uv_read_stopx609)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"luv_read_start"->(funx610x612x614->letCI.Static_funptrx615=x614inletCI.Static_funptrx613=x612inletCI.CPointerx611=x610inluv_stub_77_luv_read_startx611x613x615)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_accept"->(funx616x618->letCI.CPointerx619=x618inletCI.CPointerx617=x616inluv_stub_76_uv_acceptx617x619)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"uv_listen"->(funx620x622x623->letCI.Static_funptrx624=x623inletCI.CPointerx621=x620inluv_stub_75_uv_listenx621x622x624)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"uv_shutdown"->(funx625x627x629->letCI.Static_funptrx630=x629inletCI.CPointerx628=x627inletCI.CPointerx626=x625inluv_stub_74_uv_shutdownx626x628x630)|Function(CI.Void,Returns(CI.Funptrx632)),"luv_get_read_trampoline"->(funx631->CI.make_fun_ptrx632(luv_stub_73_luv_get_read_trampolinex631))|Function(CI.Void,Returns(CI.Funptrx634)),"luv_get_connection_trampoline"->(funx633->CI.make_fun_ptrx634(luv_stub_72_luv_get_connection_trampolinex633))|Function(CI.Void,Returns(CI.Funptrx636)),"luv_get_write_trampoline"->(funx635->CI.make_fun_ptrx636(luv_stub_71_luv_get_write_trampolinex635))|Function(CI.Void,Returns(CI.Funptrx638)),"luv_get_shutdown_trampoline"->(funx637->CI.make_fun_ptrx638(luv_stub_70_luv_get_shutdown_trampolinex637))|Function(CI.Void,Returns(CI.Funptrx640)),"luv_get_connect_trampoline"->(funx639->CI.make_fun_ptrx640(luv_stub_69_luv_get_connect_trampolinex639))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_signal_stop"->(funx641->letCI.CPointerx642=x641inluv_stub_68_uv_signal_stopx642)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_signal_start_oneshot"->(funx643x645x647->letCI.Static_funptrx646=x645inletCI.CPointerx644=x643inluv_stub_67_uv_signal_start_oneshotx644x646x647)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_signal_start"->(funx648x650x652->letCI.Static_funptrx651=x650inletCI.CPointerx649=x648inluv_stub_66_uv_signal_startx649x651x652)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_signal_init"->(funx653x655->letCI.CPointerx656=x655inletCI.CPointerx654=x653inluv_stub_65_uv_signal_initx654x656)|Function(CI.Void,Returns(CI.Funptrx658)),"luv_get_signal_trampoline"->(funx657->CI.make_fun_ptrx658(luv_stub_64_luv_get_signal_trampolinex657))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_poll_stop"->(funx659->letCI.CPointerx660=x659inluv_stub_63_uv_poll_stopx660)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"uv_poll_start"->(funx661x663x664->letCI.Static_funptrx665=x664inletCI.CPointerx662=x661inluv_stub_62_uv_poll_startx662x663x665)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Struct_;write=x671;_},Returns(CI.PrimitiveCI.Int)))),"uv_poll_init_socket"->(funx666x668x670->letCI.CPointerx673=Ctypes.addr(x671x670)inletCI.CPointerx669=x668inletCI.CPointerx667=x666inletx672=x673inluv_stub_61_uv_poll_init_socketx667x669x672)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_poll_init"->(funx674x676x678->letCI.CPointerx677=x676inletCI.CPointerx675=x674inluv_stub_60_uv_poll_initx675x677x678)|Function(CI.Void,Returns(CI.Funptrx680)),"luv_get_poll_trampoline"->(funx679->CI.make_fun_ptrx680(luv_stub_59_luv_get_poll_trampolinex679))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_async_send"->(funx681->letCI.CPointerx682=x681inluv_stub_58_uv_async_sendx682)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"uv_async_init"->(funx683x685x687->letCI.Static_funptrx688=x687inletCI.CPointerx686=x685inletCI.CPointerx684=x683inluv_stub_57_uv_async_initx684x686x688)|Function(CI.Void,Returns(CI.Funptrx690)),"luv_get_async_trampoline"->(funx689->CI.make_fun_ptrx690(luv_stub_56_luv_get_async_trampolinex689))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_idle_stop"->(funx691->letCI.CPointerx692=x691inluv_stub_55_uv_idle_stopx692)|Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))),"uv_idle_start"->(funx693x695->letCI.Static_funptrx696=x695inletCI.CPointerx694=x693inluv_stub_54_uv_idle_startx694x696)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_idle_init"->(funx697x699->letCI.CPointerx700=x699inletCI.CPointerx698=x697inluv_stub_53_uv_idle_initx698x700)|Function(CI.Void,Returns(CI.Funptrx702)),"luv_get_idle_trampoline"->(funx701->CI.make_fun_ptrx702(luv_stub_52_luv_get_idle_trampolinex701))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_check_stop"->(funx703->letCI.CPointerx704=x703inluv_stub_51_uv_check_stopx704)|Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))),"uv_check_start"->(funx705x707->letCI.Static_funptrx708=x707inletCI.CPointerx706=x705inluv_stub_50_uv_check_startx706x708)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_check_init"->(funx709x711->letCI.CPointerx712=x711inletCI.CPointerx710=x709inluv_stub_49_uv_check_initx710x712)|Function(CI.Void,Returns(CI.Funptrx714)),"luv_get_check_trampoline"->(funx713->CI.make_fun_ptrx714(luv_stub_48_luv_get_check_trampolinex713))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_prepare_stop"->(funx715->letCI.CPointerx716=x715inluv_stub_47_uv_prepare_stopx716)|Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))),"uv_prepare_start"->(funx717x719->letCI.Static_funptrx720=x719inletCI.CPointerx718=x717inluv_stub_46_uv_prepare_startx718x720)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_prepare_init"->(funx721x723->letCI.CPointerx724=x723inletCI.CPointerx722=x721inluv_stub_45_uv_prepare_initx722x724)|Function(CI.Void,Returns(CI.Funptrx726)),"luv_get_prepare_trampoline"->(funx725->CI.make_fun_ptrx726(luv_stub_44_luv_get_prepare_trampolinex725))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Uint64_t)),"uv_timer_get_due_in"->(funx727->letCI.CPointerx728=x727inluv_stub_43_uv_timer_get_due_inx728)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Uint64_t)),"uv_timer_get_repeat"->(funx729->letCI.CPointerx730=x729inluv_stub_42_uv_timer_get_repeatx730)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint64_t,ReturnsCI.Void)),"uv_timer_set_repeat"->(funx731x733->letCI.CPointerx732=x731inluv_stub_41_uv_timer_set_repeatx732x733)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_timer_again"->(funx734->letCI.CPointerx735=x734inluv_stub_40_uv_timer_againx735)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_timer_stop"->(funx736->letCI.CPointerx737=x736inluv_stub_39_uv_timer_stopx737)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.PrimitiveCI.Uint64_t,Function(CI.PrimitiveCI.Uint64_t,Returns(CI.PrimitiveCI.Int))))),"uv_timer_start"->(funx738x740x742x743->letCI.Static_funptrx741=x740inletCI.CPointerx739=x738inluv_stub_38_uv_timer_startx739x741x742x743)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_timer_init"->(funx744x746->letCI.CPointerx747=x746inletCI.CPointerx745=x744inluv_stub_37_uv_timer_initx745x747)|Function(CI.Void,Returns(CI.Funptrx749)),"luv_get_timer_trampoline"->(funx748->CI.make_fun_ptrx749(luv_stub_36_luv_get_timer_trampolinex748))|Function(CI.Pointer_,Function(CI.Pointer_,ReturnsCI.Void)),"uv_req_set_data"->(funx750x752->letCI.CPointerx753=x752inletCI.CPointerx751=x750inluv_stub_35_uv_req_set_datax751x753)|Function(CI.Pointer_,Returns(CI.Pointerx756)),"uv_req_get_data"->(funx754->letCI.CPointerx755=x754inCI.make_ptrx756(luv_stub_34_uv_req_get_datax755))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_cancel"->(funx757->letCI.CPointerx758=x757inluv_stub_33_uv_cancelx758)|Function(CI.Pointer_,Function(CI.Pointer_,ReturnsCI.Void)),"uv_handle_set_data"->(funx759x761->letCI.CPointerx762=x761inletCI.CPointerx760=x759inluv_stub_32_uv_handle_set_datax760x762)|Function(CI.Pointer_,Returns(CI.Pointerx765)),"uv_handle_get_data"->(funx763->letCI.CPointerx764=x763inCI.make_ptrx765(luv_stub_31_uv_handle_get_datax764))|Function(CI.Pointer_,Returns(CI.Pointerx768)),"uv_handle_get_loop"->(funx766->letCI.CPointerx767=x766inCI.make_ptrx768(luv_stub_30_uv_handle_get_loopx767))|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_fileno"->(funx769x771->letCI.CPointerx772=x771inletCI.CPointerx770=x769inluv_stub_29_uv_filenox770x772)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_recv_buffer_size"->(funx773x775->letCI.CPointerx776=x775inletCI.CPointerx774=x773inluv_stub_28_uv_recv_buffer_sizex774x776)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_send_buffer_size"->(funx777x779->letCI.CPointerx780=x779inletCI.CPointerx778=x777inluv_stub_27_uv_send_buffer_sizex778x780)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_has_ref"->(funx781->letCI.CPointerx782=x781inluv_stub_26_uv_has_refx782)|Function(CI.Pointer_,ReturnsCI.Void),"uv_unref"->(funx783->letCI.CPointerx784=x783inluv_stub_25_uv_unrefx784)|Function(CI.Pointer_,ReturnsCI.Void),"uv_ref"->(funx785->letCI.CPointerx786=x785inluv_stub_24_uv_refx786)|Function(CI.Pointer_,Function(CI.Funptr_,ReturnsCI.Void)),"uv_close"->(funx787x789->letCI.Static_funptrx790=x789inletCI.CPointerx788=x787inluv_stub_23_uv_closex788x790)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_is_closing"->(funx791->letCI.CPointerx792=x791inluv_stub_22_uv_is_closingx792)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_is_active"->(funx793->letCI.CPointerx794=x793inluv_stub_21_uv_is_activex794)|Function(CI.Void,Returns(CI.Funptrx796)),"luv_get_alloc_trampoline"->(funx795->CI.make_fun_ptrx796(luv_stub_20_luv_get_alloc_trampolinex795))|Function(CI.Void,Returns(CI.Funptrx798)),"luv_get_close_trampoline"->(funx797->CI.make_fun_ptrx798(luv_stub_19_luv_get_close_trampolinex797))|Function(CI.Void,ReturnsCI.Void),"uv_library_shutdown"->luv_stub_18_uv_library_shutdown|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_loop_fork"->(funx800->letCI.CPointerx801=x800inluv_stub_17_uv_loop_forkx801)|Function(CI.Pointer_,ReturnsCI.Void),"uv_update_time"->(funx802->letCI.CPointerx803=x802inluv_stub_16_uv_update_timex803)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Uint64_t)),"uv_now"->(funx804->letCI.CPointerx805=x804inluv_stub_15_uv_nowx805)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_backend_timeout"->(funx806->letCI.CPointerx807=x806inluv_stub_14_uv_backend_timeoutx807)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_backend_fd"->(funx808->letCI.CPointerx809=x808inluv_stub_13_uv_backend_fdx809)|Function(CI.Pointer_,ReturnsCI.Void),"uv_stop"->(funx810->letCI.CPointerx811=x810inluv_stub_12_uv_stopx811)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_loop_alive"->(funx812->letCI.CPointerx813=x812inluv_stub_11_uv_loop_alivex813)|Function(CI.Void,Returns(CI.Pointerx815)),"uv_default_loop"->(funx814->CI.make_ptrx815(luv_stub_10_uv_default_loopx814))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_loop_close"->(funx816->letCI.CPointerx817=x816inluv_stub_9_uv_loop_closex817)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_loop_configure"->(funx818x820x821->letCI.CPointerx819=x818inluv_stub_8_uv_loop_configurex819x820x821)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_loop_init"->(funx822->letCI.CPointerx823=x822inluv_stub_7_uv_loop_initx823)|Function(CI.Void,Returns(CI.View{CI.ty=CI.Pointerx825;read=x826;_})),"luv_version_string"->(funx824->x826(CI.make_ptrx825(luv_stub_6_luv_version_stringx824)))|Function(CI.Void,Returns(CI.PrimitiveCI.Int)),"uv_version"->luv_stub_5_uv_version|Function(CI.Void,Returns(CI.View{CI.ty=CI.Pointerx829;read=x830;_})),"luv_version_suffix"->(funx828->x830(CI.make_ptrx829(luv_stub_4_luv_version_suffixx828)))|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"->(funx838x840x842x844x845x846->letCI.Static_funptrx847=x846inletCI.CPointerx843=x842inletCI.CPointerx841=x840inletCI.CPointerx839=x838inluv_stub_blocking_57_uv_randomx839x841x843x844x845x847)|Function(CI.PrimitiveCI.Int,ReturnsCI.Void),"uv_sleep"->luv_stub_blocking_56_uv_sleep|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_barrier_wait"->(funx849->letCI.CPointerx850=x849inluv_stub_blocking_55_uv_barrier_waitx850)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint64_t,Returns(CI.PrimitiveCI.Int)))),"uv_cond_timedwait"->(funx851x853x855->letCI.CPointerx854=x853inletCI.CPointerx852=x851inluv_stub_blocking_54_uv_cond_timedwaitx852x854x855)|Function(CI.Pointer_,Function(CI.Pointer_,ReturnsCI.Void)),"uv_cond_wait"->(funx856x858->letCI.CPointerx859=x858inletCI.CPointerx857=x856inluv_stub_blocking_53_uv_cond_waitx857x859)|Function(CI.Pointer_,ReturnsCI.Void),"uv_sem_wait"->(funx860->letCI.CPointerx861=x860inluv_stub_blocking_52_uv_sem_waitx861)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_wrlock"->(funx862->letCI.CPointerx863=x862inluv_stub_blocking_51_uv_rwlock_wrlockx863)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_rdlock"->(funx864->letCI.CPointerx865=x864inluv_stub_blocking_50_uv_rwlock_rdlockx865)|Function(CI.Pointer_,ReturnsCI.Void),"uv_mutex_lock"->(funx866->letCI.CPointerx867=x866inluv_stub_blocking_49_uv_mutex_lockx867)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_thread_join"->(funx868->letCI.CPointerx869=x868inluv_stub_blocking_48_uv_thread_joinx869)|Function(CI.Pointer_,Returns(CI.Pointerx872)),"uv_fs_get_statbuf"->(funx870->letCI.CPointerx871=x870inCI.make_ptrx872(luv_stub_blocking_47_uv_fs_get_statbufx871))|Function(CI.Pointer_,Returns(CI.View{CI.ty=CI.Pointerx875;read=x876;_})),"luv_fs_get_path"->(funx873->letCI.CPointerx874=x873inx876(CI.make_ptrx875(luv_stub_blocking_46_luv_fs_get_pathx874)))|Function(CI.Pointer_,Returns(CI.View{CI.ty=CI.Pointerx879;read=x880;_})),"uv_fs_get_ptr"->(funx877->letCI.CPointerx878=x877inx880(CI.make_ptrx879(luv_stub_blocking_45_uv_fs_get_ptrx878)))|Function(CI.Pointer_,Returns(CI.Pointerx883)),"uv_fs_get_ptr"->(funx881->letCI.CPointerx882=x881inCI.make_ptrx883(luv_stub_blocking_44_uv_fs_get_ptrx882))|Function(CI.Pointer_,Returns(CI.View{CI.ty=CI.PrimitiveCI.Int64_t;read=x886;_})),"uv_fs_get_result"->(funx884->letCI.CPointerx885=x884inx886(luv_stub_blocking_43_uv_fs_get_resultx885))|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x892;_},Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_lchown"->(funx887x889x891x895x896x897->letCI.Static_funptrx898=x897inletCI.CPointerx894=x892x891inletCI.CPointerx890=x889inletCI.CPointerx888=x887inletx893=x894inluv_stub_blocking_42_uv_fs_lchownx888x890x893x895x896x898)|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"->(funx899x901x903x904x905x906->letCI.Static_funptrx907=x906inletCI.CPointerx902=x901inletCI.CPointerx900=x899inluv_stub_blocking_41_uv_fs_fchownx900x902x903x904x905x907)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x913;_},Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_chown"->(funx908x910x912x916x917x918->letCI.Static_funptrx919=x918inletCI.CPointerx915=x913x912inletCI.CPointerx911=x910inletCI.CPointerx909=x908inletx914=x915inluv_stub_blocking_40_uv_fs_chownx909x911x914x916x917x919)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x925;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_realpath"->(funx920x922x924x928->letCI.Static_funptrx929=x928inletCI.CPointerx927=x925x924inletCI.CPointerx923=x922inletCI.CPointerx921=x920inletx926=x927inluv_stub_blocking_39_uv_fs_realpathx921x923x926x929)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x935;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_readlink"->(funx930x932x934x938->letCI.Static_funptrx939=x938inletCI.CPointerx937=x935x934inletCI.CPointerx933=x932inletCI.CPointerx931=x930inletx936=x937inluv_stub_blocking_38_uv_fs_readlinkx931x933x936x939)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x945;_},Function(CI.View{CI.ty=CI.Pointer_;write=x949;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_symlink"->(funx940x942x944x948x952x953->letCI.Static_funptrx954=x953inletCI.CPointerx951=x949x948inletCI.CPointerx947=x945x944inletCI.CPointerx943=x942inletCI.CPointerx941=x940inletx946=x947inletx950=x951inluv_stub_blocking_37_uv_fs_symlinkx941x943x946x950x952x954)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x960;_},Function(CI.View{CI.ty=CI.Pointer_;write=x964;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_link"->(funx955x957x959x963x967->letCI.Static_funptrx968=x967inletCI.CPointerx966=x964x963inletCI.CPointerx962=x960x959inletCI.CPointerx958=x957inletCI.CPointerx956=x955inletx961=x962inletx965=x966inluv_stub_blocking_36_uv_fs_linkx956x958x961x965x968)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x974;_},Function(CI.PrimitiveCI.Float,Function(CI.PrimitiveCI.Float,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_lutime"->(funx969x971x973x977x978x979->letCI.Static_funptrx980=x979inletCI.CPointerx976=x974x973inletCI.CPointerx972=x971inletCI.CPointerx970=x969inletx975=x976inluv_stub_blocking_35_uv_fs_lutimex970x972x975x977x978x980)|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"->(funx981x983x985x986x987x988->letCI.Static_funptrx989=x988inletCI.CPointerx984=x983inletCI.CPointerx982=x981inluv_stub_blocking_34_uv_fs_futimex982x984x985x986x987x989)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x995;_},Function(CI.PrimitiveCI.Float,Function(CI.PrimitiveCI.Float,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_utime"->(funx990x992x994x998x999x1000->letCI.Static_funptrx1001=x1000inletCI.CPointerx997=x995x994inletCI.CPointerx993=x992inletCI.CPointerx991=x990inletx996=x997inluv_stub_blocking_33_uv_fs_utimex991x993x996x998x999x1001)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_fchmod"->(funx1002x1004x1006x1007x1008->letCI.Static_funptrx1009=x1008inletCI.CPointerx1005=x1004inletCI.CPointerx1003=x1002inluv_stub_blocking_32_uv_fs_fchmodx1003x1005x1006x1007x1009)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1015;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_chmod"->(funx1010x1012x1014x1018x1019->letCI.Static_funptrx1020=x1019inletCI.CPointerx1017=x1015x1014inletCI.CPointerx1013=x1012inletCI.CPointerx1011=x1010inletx1016=x1017inluv_stub_blocking_31_uv_fs_chmodx1011x1013x1016x1018x1020)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1026;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_access"->(funx1021x1023x1025x1029x1030->letCI.Static_funptrx1031=x1030inletCI.CPointerx1028=x1026x1025inletCI.CPointerx1024=x1023inletCI.CPointerx1022=x1021inletx1027=x1028inluv_stub_blocking_30_uv_fs_accessx1022x1024x1027x1029x1031)|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"->(funx1032x1034x1036x1037x1038x1039x1040->letCI.Static_funptrx1041=x1040inletCI.CPointerx1035=x1034inletCI.CPointerx1033=x1032inluv_stub_blocking_29_uv_fs_sendfilex1033x1035x1036x1037x1038x1039x1041)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1047;_},Function(CI.View{CI.ty=CI.Pointer_;write=x1051;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_copyfile"->(funx1042x1044x1046x1050x1054x1055->letCI.Static_funptrx1056=x1055inletCI.CPointerx1053=x1051x1050inletCI.CPointerx1049=x1047x1046inletCI.CPointerx1045=x1044inletCI.CPointerx1043=x1042inletx1048=x1049inletx1052=x1053inluv_stub_blocking_28_uv_fs_copyfilex1043x1045x1048x1052x1054x1056)|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"->(funx1057x1059x1061x1062x1063->letCI.Static_funptrx1064=x1063inletCI.CPointerx1060=x1059inletCI.CPointerx1058=x1057inluv_stub_blocking_27_uv_fs_ftruncatex1058x1060x1061x1062x1064)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_fdatasync"->(funx1065x1067x1069x1070->letCI.Static_funptrx1071=x1070inletCI.CPointerx1068=x1067inletCI.CPointerx1066=x1065inluv_stub_blocking_26_uv_fs_fdatasyncx1066x1068x1069x1071)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_fsync"->(funx1072x1074x1076x1077->letCI.Static_funptrx1078=x1077inletCI.CPointerx1075=x1074inletCI.CPointerx1073=x1072inluv_stub_blocking_25_uv_fs_fsyncx1073x1075x1076x1078)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1084;_},Function(CI.View{CI.ty=CI.Pointer_;write=x1088;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_rename"->(funx1079x1081x1083x1087x1091->letCI.Static_funptrx1092=x1091inletCI.CPointerx1090=x1088x1087inletCI.CPointerx1086=x1084x1083inletCI.CPointerx1082=x1081inletCI.CPointerx1080=x1079inletx1085=x1086inletx1089=x1090inluv_stub_blocking_24_uv_fs_renamex1080x1082x1085x1089x1092)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1098;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_statfs"->(funx1093x1095x1097x1101->letCI.Static_funptrx1102=x1101inletCI.CPointerx1100=x1098x1097inletCI.CPointerx1096=x1095inletCI.CPointerx1094=x1093inletx1099=x1100inluv_stub_blocking_23_uv_fs_statfsx1094x1096x1099x1102)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_fstat"->(funx1103x1105x1107x1108->letCI.Static_funptrx1109=x1108inletCI.CPointerx1106=x1105inletCI.CPointerx1104=x1103inluv_stub_blocking_22_uv_fs_fstatx1104x1106x1107x1109)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1115;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_lstat"->(funx1110x1112x1114x1118->letCI.Static_funptrx1119=x1118inletCI.CPointerx1117=x1115x1114inletCI.CPointerx1113=x1112inletCI.CPointerx1111=x1110inletx1116=x1117inluv_stub_blocking_21_uv_fs_lstatx1111x1113x1116x1119)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1125;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_stat"->(funx1120x1122x1124x1128->letCI.Static_funptrx1129=x1128inletCI.CPointerx1127=x1125x1124inletCI.CPointerx1123=x1122inletCI.CPointerx1121=x1120inletx1126=x1127inluv_stub_blocking_20_uv_fs_statx1121x1123x1126x1129)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_fs_scandir_next"->(funx1130x1132->letCI.CPointerx1133=x1132inletCI.CPointerx1131=x1130inluv_stub_blocking_19_uv_fs_scandir_nextx1131x1133)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1139;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_scandir"->(funx1134x1136x1138x1142x1143->letCI.Static_funptrx1144=x1143inletCI.CPointerx1141=x1139x1138inletCI.CPointerx1137=x1136inletCI.CPointerx1135=x1134inletx1140=x1141inluv_stub_blocking_18_uv_fs_scandirx1135x1137x1140x1142x1144)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_readdir"->(funx1145x1147x1149x1151->letCI.Static_funptrx1152=x1151inletCI.CPointerx1150=x1149inletCI.CPointerx1148=x1147inletCI.CPointerx1146=x1145inluv_stub_blocking_17_uv_fs_readdirx1146x1148x1150x1152)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_closedir"->(funx1153x1155x1157x1159->letCI.Static_funptrx1160=x1159inletCI.CPointerx1158=x1157inletCI.CPointerx1156=x1155inletCI.CPointerx1154=x1153inluv_stub_blocking_16_uv_fs_closedirx1154x1156x1158x1160)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1166;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_opendir"->(funx1161x1163x1165x1169->letCI.Static_funptrx1170=x1169inletCI.CPointerx1168=x1166x1165inletCI.CPointerx1164=x1163inletCI.CPointerx1162=x1161inletx1167=x1168inluv_stub_blocking_15_uv_fs_opendirx1162x1164x1167x1170)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1176;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_rmdir"->(funx1171x1173x1175x1179->letCI.Static_funptrx1180=x1179inletCI.CPointerx1178=x1176x1175inletCI.CPointerx1174=x1173inletCI.CPointerx1172=x1171inletx1177=x1178inluv_stub_blocking_14_uv_fs_rmdirx1172x1174x1177x1180)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1186;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_mkstemp"->(funx1181x1183x1185x1189->letCI.Static_funptrx1190=x1189inletCI.CPointerx1188=x1186x1185inletCI.CPointerx1184=x1183inletCI.CPointerx1182=x1181inletx1187=x1188inluv_stub_blocking_13_uv_fs_mkstempx1182x1184x1187x1190)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1196;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_mkdtemp"->(funx1191x1193x1195x1199->letCI.Static_funptrx1200=x1199inletCI.CPointerx1198=x1196x1195inletCI.CPointerx1194=x1193inletCI.CPointerx1192=x1191inletx1197=x1198inluv_stub_blocking_12_uv_fs_mkdtempx1192x1194x1197x1200)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1206;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_mkdir"->(funx1201x1203x1205x1209x1210->letCI.Static_funptrx1211=x1210inletCI.CPointerx1208=x1206x1205inletCI.CPointerx1204=x1203inletCI.CPointerx1202=x1201inletx1207=x1208inluv_stub_blocking_11_uv_fs_mkdirx1202x1204x1207x1209x1211)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1217;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_unlink"->(funx1212x1214x1216x1220->letCI.Static_funptrx1221=x1220inletCI.CPointerx1219=x1217x1216inletCI.CPointerx1215=x1214inletCI.CPointerx1213=x1212inletx1218=x1219inluv_stub_blocking_10_uv_fs_unlinkx1213x1215x1218x1221)|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"->(funx1222x1224x1226x1227x1229x1230x1231->letCI.Static_funptrx1232=x1231inletCI.CPointerx1228=x1227inletCI.CPointerx1225=x1224inletCI.CPointerx1223=x1222inluv_stub_blocking_9_uv_fs_writex1223x1225x1226x1228x1229x1230x1232)|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"->(funx1233x1235x1237x1238x1240x1241x1242->letCI.Static_funptrx1243=x1242inletCI.CPointerx1239=x1238inletCI.CPointerx1236=x1235inletCI.CPointerx1234=x1233inluv_stub_blocking_8_uv_fs_readx1234x1236x1237x1239x1240x1241x1243)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1249;_},Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_open"->(funx1244x1246x1248x1252x1253x1254->letCI.Static_funptrx1255=x1254inletCI.CPointerx1251=x1249x1248inletCI.CPointerx1247=x1246inletCI.CPointerx1245=x1244inletx1250=x1251inluv_stub_blocking_7_uv_fs_openx1245x1247x1250x1252x1253x1255)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_close"->(funx1256x1258x1260x1261->letCI.Static_funptrx1262=x1261inletCI.CPointerx1259=x1258inletCI.CPointerx1257=x1256inluv_stub_blocking_6_uv_fs_closex1257x1259x1260x1262)|Function(CI.Pointer_,ReturnsCI.Void),"uv_fs_req_cleanup"->(funx1263->letCI.CPointerx1264=x1263inluv_stub_blocking_5_uv_fs_req_cleanupx1264)|Function(CI.Void,Returns(CI.Funptrx1266)),"luv_null_fs_callback_pointer"->(funx1265->CI.make_fun_ptrx1266(luv_stub_blocking_4_luv_null_fs_callback_pointerx1265))|Function(CI.Void,Returns(CI.Funptrx1268)),"luv_get_fs_trampoline"->(funx1267->CI.make_fun_ptrx1268(luv_stub_blocking_3_luv_get_fs_trampolinex1267))|Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1272;_},Returns(CI.PrimitiveCI.Int))),"uv_pipe_bind"->(funx1269x1271->letCI.CPointerx1274=x1272x1271inletCI.CPointerx1270=x1269inletx1273=x1274inluv_stub_blocking_2_uv_pipe_bindx1270x1273)|Function(CI.Pointer_,Function(CI.View{CI.ty=CI.PrimitiveCI.Uint32_t;write=x1278;_},Returns(CI.PrimitiveCI.Bool))),"uv_run"->(funx1275x1277->letCI.CPointerx1276=x1275inletx1279=x1278x1277inluv_stub_blocking_1_uv_runx1276x1279)|_,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