123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177moduleNon_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_memcpy:bytesCI.ocaml->_CI.fatptr->int->unit="luv_stub_162_memcpy"externalluv_stub_163_memcpy:_CI.fatptr->bytesCI.ocaml->int->unit="luv_stub_163_memcpy"externalluv_stub_164_luv_get_work_trampoline:unit->CI.voidp="luv_stub_164_luv_get_work_trampoline"externalluv_stub_165_luv_get_after_work_trampoline:unit->CI.voidp="luv_stub_165_luv_get_after_work_trampoline"externalluv_stub_166_luv_get_c_work_trampoline:unit->CI.voidp="luv_stub_166_luv_get_c_work_trampoline"externalluv_stub_167_luv_get_after_c_work_trampoline:unit->CI.voidp="luv_stub_167_luv_get_after_c_work_trampoline"externalluv_stub_168_luv_add_c_function_and_argument:_CI.fatptr->nativeint->nativeint->bool="luv_stub_168_luv_add_c_function_and_argument"externalluv_stub_169_uv_queue_work:_CI.fatptr->_CI.fatptr->_CI.fatfunptr->_CI.fatfunptr->int="luv_stub_169_uv_queue_work"externalluv_stub_170_luv_get_thread_trampoline:unit->CI.voidp="luv_stub_170_luv_get_thread_trampoline"externalluv_stub_171_uv_thread_create_ex:_CI.fatptr->_CI.fatptr->_CI.fatfunptr->_CI.fatptr->int="luv_stub_171_uv_thread_create_ex"externalluv_stub_172_luv_thread_create_c:_CI.fatptr->_CI.fatptr->nativeint->nativeint->int="luv_stub_172_luv_thread_create_c"externalluv_stub_173_uv_thread_self:unit->CI.managed_buffer="luv_stub_173_uv_thread_self"externalluv_stub_174_uv_thread_equal:_CI.fatptr->_CI.fatptr->bool="luv_stub_174_uv_thread_equal"externalluv_stub_175_uv_key_create:_CI.fatptr->int="luv_stub_175_uv_key_create"externalluv_stub_176_uv_key_delete:_CI.fatptr->unit="luv_stub_176_uv_key_delete"externalluv_stub_177_uv_key_get:_CI.fatptr->CI.voidp="luv_stub_177_uv_key_get"externalluv_stub_178_uv_key_set:_CI.fatptr->_CI.fatptr->unit="luv_stub_178_uv_key_set"externalluv_stub_179_luv_get_once_trampoline:unit->CI.voidp="luv_stub_179_luv_get_once_trampoline"externalluv_stub_180_luv_once_init:_CI.fatptr->int="luv_stub_180_luv_once_init"externalluv_stub_181_uv_once:_CI.fatptr->_CI.fatfunptr->unit="luv_stub_181_uv_once"externalluv_stub_182_uv_mutex_init:_CI.fatptr->int="luv_stub_182_uv_mutex_init"externalluv_stub_183_uv_mutex_init_recursive:_CI.fatptr->int="luv_stub_183_uv_mutex_init_recursive"externalluv_stub_184_uv_mutex_destroy:_CI.fatptr->unit="luv_stub_184_uv_mutex_destroy"externalluv_stub_185_uv_mutex_trylock:_CI.fatptr->int="luv_stub_185_uv_mutex_trylock"externalluv_stub_186_uv_mutex_unlock:_CI.fatptr->unit="luv_stub_186_uv_mutex_unlock"externalluv_stub_187_uv_rwlock_init:_CI.fatptr->int="luv_stub_187_uv_rwlock_init"externalluv_stub_188_uv_rwlock_destroy:_CI.fatptr->unit="luv_stub_188_uv_rwlock_destroy"externalluv_stub_189_uv_rwlock_tryrdlock:_CI.fatptr->int="luv_stub_189_uv_rwlock_tryrdlock"externalluv_stub_190_uv_rwlock_rdunlock:_CI.fatptr->unit="luv_stub_190_uv_rwlock_rdunlock"externalluv_stub_191_uv_rwlock_trywrlock:_CI.fatptr->int="luv_stub_191_uv_rwlock_trywrlock"externalluv_stub_192_uv_rwlock_wrunlock:_CI.fatptr->unit="luv_stub_192_uv_rwlock_wrunlock"externalluv_stub_193_uv_sem_init:_CI.fatptr->Unsigned.uint->int="luv_stub_193_uv_sem_init"externalluv_stub_194_uv_sem_destroy:_CI.fatptr->unit="luv_stub_194_uv_sem_destroy"externalluv_stub_195_uv_sem_post:_CI.fatptr->unit="luv_stub_195_uv_sem_post"externalluv_stub_196_uv_sem_trywait:_CI.fatptr->int="luv_stub_196_uv_sem_trywait"externalluv_stub_197_uv_cond_init:_CI.fatptr->int="luv_stub_197_uv_cond_init"externalluv_stub_198_uv_cond_destroy:_CI.fatptr->unit="luv_stub_198_uv_cond_destroy"externalluv_stub_199_uv_cond_signal:_CI.fatptr->unit="luv_stub_199_uv_cond_signal"externalluv_stub_200_uv_cond_broadcast:_CI.fatptr->unit="luv_stub_200_uv_cond_broadcast"externalluv_stub_201_uv_barrier_init:_CI.fatptr->Unsigned.uint->int="luv_stub_201_uv_barrier_init"externalluv_stub_202_uv_barrier_destroy:_CI.fatptr->unit="luv_stub_202_uv_barrier_destroy"externalluv_stub_203_uv_ip4_addr:stringCI.ocaml->int->_CI.fatptr->int="luv_stub_203_uv_ip4_addr"externalluv_stub_204_uv_ip6_addr:stringCI.ocaml->int->_CI.fatptr->int="luv_stub_204_uv_ip6_addr"externalluv_stub_205_uv_ip4_name:_CI.fatptr->bytesCI.ocaml->Unsigned.size_t->int="luv_stub_205_uv_ip4_name"externalluv_stub_206_uv_ip6_name:_CI.fatptr->bytesCI.ocaml->Unsigned.size_t->int="luv_stub_206_uv_ip6_name"externalluv_stub_207_memcpy:_CI.fatptr->_CI.fatptr->int->unit="luv_stub_207_memcpy"externalluv_stub_208_ntohs:Unsigned.ushort->Unsigned.ushort="luv_stub_208_ntohs"externalluv_stub_209_uv_resident_set_memory:_CI.fatptr->int="luv_stub_209_uv_resident_set_memory"externalluv_stub_210_uv_uptime:_CI.fatptr->int="luv_stub_210_uv_uptime"externalluv_stub_211_uv_loadavg:_CI.fatptr->unit="luv_stub_211_uv_loadavg"externalluv_stub_212_uv_get_free_memory:unit->Unsigned.uint64="luv_stub_212_uv_get_free_memory"externalluv_stub_213_uv_get_total_memory:unit->Unsigned.uint64="luv_stub_213_uv_get_total_memory"externalluv_stub_214_uv_get_constrained_memory:unit->Unsigned.uint64="luv_stub_214_uv_get_constrained_memory"externalluv_stub_215_uv_os_getpriority:int->_CI.fatptr->int="luv_stub_215_uv_os_getpriority"externalluv_stub_216_uv_os_setpriority:int->int->int="luv_stub_216_uv_os_setpriority"externalluv_stub_217_uv_getrusage:_CI.fatptr->int="luv_stub_217_uv_getrusage"externalluv_stub_218_uv_os_getpid:unit->int="luv_stub_218_uv_os_getpid"externalluv_stub_219_uv_os_getppid:unit->int="luv_stub_219_uv_os_getppid"externalluv_stub_220_uv_cpu_info:_CI.fatptr->_CI.fatptr->int="luv_stub_220_uv_cpu_info"externalluv_stub_221_uv_free_cpu_info:_CI.fatptr->int->unit="luv_stub_221_uv_free_cpu_info"externalluv_stub_222_uv_interface_addresses:_CI.fatptr->_CI.fatptr->int="luv_stub_222_uv_interface_addresses"externalluv_stub_223_uv_free_interface_addresses:_CI.fatptr->int->unit="luv_stub_223_uv_free_interface_addresses"externalluv_stub_224_uv_if_indextoname:Unsigned.uint->bytesCI.ocaml->_CI.fatptr->int="luv_stub_224_uv_if_indextoname"externalluv_stub_225_uv_if_indextoiid:Unsigned.uint->bytesCI.ocaml->_CI.fatptr->int="luv_stub_225_uv_if_indextoiid"externalluv_stub_226_uv_os_gethostname:bytesCI.ocaml->_CI.fatptr->int="luv_stub_226_uv_os_gethostname"externalluv_stub_227_uv_exepath:bytesCI.ocaml->_CI.fatptr->int="luv_stub_227_uv_exepath"externalluv_stub_228_uv_cwd:bytesCI.ocaml->_CI.fatptr->int="luv_stub_228_uv_cwd"externalluv_stub_229_uv_chdir:stringCI.ocaml->int="luv_stub_229_uv_chdir"externalluv_stub_230_uv_os_homedir:bytesCI.ocaml->_CI.fatptr->int="luv_stub_230_uv_os_homedir"externalluv_stub_231_uv_os_tmpdir:bytesCI.ocaml->_CI.fatptr->int="luv_stub_231_uv_os_tmpdir"externalluv_stub_232_uv_os_get_passwd:_CI.fatptr->int="luv_stub_232_uv_os_get_passwd"externalluv_stub_233_uv_os_free_passwd:_CI.fatptr->unit="luv_stub_233_uv_os_free_passwd"externalluv_stub_234_uv_os_getenv:stringCI.ocaml->bytesCI.ocaml->_CI.fatptr->int="luv_stub_234_uv_os_getenv"externalluv_stub_235_uv_os_setenv:stringCI.ocaml->stringCI.ocaml->int="luv_stub_235_uv_os_setenv"externalluv_stub_236_uv_os_unsetenv:stringCI.ocaml->int="luv_stub_236_uv_os_unsetenv"externalluv_stub_237_uv_os_environ:_CI.fatptr->_CI.fatptr->int="luv_stub_237_uv_os_environ"externalluv_stub_238_uv_os_free_environ:_CI.fatptr->int->unit="luv_stub_238_uv_os_free_environ"externalluv_stub_239_luv_os_uname:bytesCI.ocaml->int="luv_stub_239_luv_os_uname"externalluv_stub_240_uv_gettimeofday:_CI.fatptr->int="luv_stub_240_uv_gettimeofday"externalluv_stub_241_uv_hrtime:unit->Unsigned.uint64="luv_stub_241_uv_hrtime"externalluv_stub_242_luv_get_random_trampoline:unit->CI.voidp="luv_stub_242_luv_get_random_trampoline"externalluv_stub_243_luv_null_random_trampoline:unit->CI.voidp="luv_stub_243_luv_null_random_trampoline"externalluv_stub_244_uv_random:_CI.fatptr->_CI.fatptr->_CI.fatptr->Unsigned.size_t->Unsigned.uint->_CI.fatfunptr->int="luv_stub_244_uv_random_byte6""luv_stub_244_uv_random"externalluv_stub_245_uv_metrics_idle_time:_CI.fatptr->Unsigned.uint64="luv_stub_245_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_245_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_244_uv_randomx4x6x8x9x10x12)|Function(CI.Void,Returns(CI.Funptrx14)),"luv_null_random_trampoline"->(funx13->CI.make_fun_ptrx14(luv_stub_243_luv_null_random_trampolinex13))|Function(CI.Void,Returns(CI.Funptrx16)),"luv_get_random_trampoline"->(funx15->CI.make_fun_ptrx16(luv_stub_242_luv_get_random_trampolinex15))|Function(CI.Void,Returns(CI.PrimitiveCI.Uint64_t)),"uv_hrtime"->luv_stub_241_uv_hrtime|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_gettimeofday"->(funx18->letCI.CPointerx19=x18inluv_stub_240_uv_gettimeofdayx19)|Function(CI.OCamlCI.Bytes,Returns(CI.PrimitiveCI.Int)),"luv_os_uname"->luv_stub_239_luv_os_uname|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void)),"uv_os_free_environ"->(funx21x23->letCI.CPointerx22=x21inluv_stub_238_uv_os_free_environx22x23)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_environ"->(funx24x26->letCI.CPointerx27=x26inletCI.CPointerx25=x24inluv_stub_237_uv_os_environx25x27)|Function(CI.OCamlCI.String,Returns(CI.PrimitiveCI.Int)),"uv_os_unsetenv"->luv_stub_236_uv_os_unsetenv|Function(CI.OCamlCI.String,Function(CI.OCamlCI.String,Returns(CI.PrimitiveCI.Int))),"uv_os_setenv"->luv_stub_235_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_234_uv_os_getenvx31x32x34)|Function(CI.Pointer_,ReturnsCI.Void),"uv_os_free_passwd"->(funx35->letCI.CPointerx36=x35inluv_stub_233_uv_os_free_passwdx36)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_os_get_passwd"->(funx37->letCI.CPointerx38=x37inluv_stub_232_uv_os_get_passwdx38)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_tmpdir"->(funx39x40->letCI.CPointerx41=x40inluv_stub_231_uv_os_tmpdirx39x41)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_homedir"->(funx42x43->letCI.CPointerx44=x43inluv_stub_230_uv_os_homedirx42x44)|Function(CI.OCamlCI.String,Returns(CI.PrimitiveCI.Int)),"uv_chdir"->luv_stub_229_uv_chdir|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_cwd"->(funx46x47->letCI.CPointerx48=x47inluv_stub_228_uv_cwdx46x48)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_exepath"->(funx49x50->letCI.CPointerx51=x50inluv_stub_227_uv_exepathx49x51)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_gethostname"->(funx52x53->letCI.CPointerx54=x53inluv_stub_226_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_225_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_224_uv_if_indextonamex59x60x62)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void)),"uv_free_interface_addresses"->(funx63x65->letCI.CPointerx64=x63inluv_stub_223_uv_free_interface_addressesx64x65)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_interface_addresses"->(funx66x68->letCI.CPointerx69=x68inletCI.CPointerx67=x66inluv_stub_222_uv_interface_addressesx67x69)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void)),"uv_free_cpu_info"->(funx70x72->letCI.CPointerx71=x70inluv_stub_221_uv_free_cpu_infox71x72)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_cpu_info"->(funx73x75->letCI.CPointerx76=x75inletCI.CPointerx74=x73inluv_stub_220_uv_cpu_infox74x76)|Function(CI.Void,Returns(CI.PrimitiveCI.Int)),"uv_os_getppid"->luv_stub_219_uv_os_getppid|Function(CI.Void,Returns(CI.PrimitiveCI.Int)),"uv_os_getpid"->luv_stub_218_uv_os_getpid|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_getrusage"->(funx79->letCI.CPointerx80=x79inluv_stub_217_uv_getrusagex80)|Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_os_setpriority"->luv_stub_216_uv_os_setpriority|Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_os_getpriority"->(funx83x84->letCI.CPointerx85=x84inluv_stub_215_uv_os_getpriorityx83x85)|Function(CI.Void,Returns(CI.PrimitiveCI.Uint64_t)),"uv_get_constrained_memory"->luv_stub_214_uv_get_constrained_memory|Function(CI.Void,Returns(CI.PrimitiveCI.Uint64_t)),"uv_get_total_memory"->luv_stub_213_uv_get_total_memory|Function(CI.Void,Returns(CI.PrimitiveCI.Uint64_t)),"uv_get_free_memory"->luv_stub_212_uv_get_free_memory|Function(CI.Pointer_,ReturnsCI.Void),"uv_loadavg"->(funx89->letCI.CPointerx90=x89inluv_stub_211_uv_loadavgx90)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_uptime"->(funx91->letCI.CPointerx92=x91inluv_stub_210_uv_uptimex92)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_resident_set_memory"->(funx93->letCI.CPointerx94=x93inluv_stub_209_uv_resident_set_memoryx94)|Function(CI.PrimitiveCI.Ushort,Returns(CI.PrimitiveCI.Ushort)),"ntohs"->luv_stub_208_ntohs|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void))),"memcpy"->(funx96x98x100->letCI.CPointerx99=x98inletCI.CPointerx97=x96inluv_stub_207_memcpyx97x99x100)|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.PrimitiveCI.Size_t,Returns(CI.PrimitiveCI.Int)))),"uv_ip6_name"->(funx101x103x104->letCI.CPointerx102=x101inluv_stub_206_uv_ip6_namex102x103x104)|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.PrimitiveCI.Size_t,Returns(CI.PrimitiveCI.Int)))),"uv_ip4_name"->(funx105x107x108->letCI.CPointerx106=x105inluv_stub_205_uv_ip4_namex106x107x108)|Function(CI.OCamlCI.String,Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_ip6_addr"->(funx109x110x111->letCI.CPointerx112=x111inluv_stub_204_uv_ip6_addrx109x110x112)|Function(CI.OCamlCI.String,Function(CI.PrimitiveCI.Int,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_ip4_addr"->(funx113x114x115->letCI.CPointerx116=x115inluv_stub_203_uv_ip4_addrx113x114x116)|Function(CI.Pointer_,ReturnsCI.Void),"uv_barrier_destroy"->(funx117->letCI.CPointerx118=x117inluv_stub_202_uv_barrier_destroyx118)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int))),"uv_barrier_init"->(funx119x121->letCI.CPointerx120=x119inluv_stub_201_uv_barrier_initx120x121)|Function(CI.Pointer_,ReturnsCI.Void),"uv_cond_broadcast"->(funx122->letCI.CPointerx123=x122inluv_stub_200_uv_cond_broadcastx123)|Function(CI.Pointer_,ReturnsCI.Void),"uv_cond_signal"->(funx124->letCI.CPointerx125=x124inluv_stub_199_uv_cond_signalx125)|Function(CI.Pointer_,ReturnsCI.Void),"uv_cond_destroy"->(funx126->letCI.CPointerx127=x126inluv_stub_198_uv_cond_destroyx127)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_cond_init"->(funx128->letCI.CPointerx129=x128inluv_stub_197_uv_cond_initx129)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_sem_trywait"->(funx130->letCI.CPointerx131=x130inluv_stub_196_uv_sem_trywaitx131)|Function(CI.Pointer_,ReturnsCI.Void),"uv_sem_post"->(funx132->letCI.CPointerx133=x132inluv_stub_195_uv_sem_postx133)|Function(CI.Pointer_,ReturnsCI.Void),"uv_sem_destroy"->(funx134->letCI.CPointerx135=x134inluv_stub_194_uv_sem_destroyx135)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int))),"uv_sem_init"->(funx136x138->letCI.CPointerx137=x136inluv_stub_193_uv_sem_initx137x138)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_wrunlock"->(funx139->letCI.CPointerx140=x139inluv_stub_192_uv_rwlock_wrunlockx140)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_rwlock_trywrlock"->(funx141->letCI.CPointerx142=x141inluv_stub_191_uv_rwlock_trywrlockx142)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_rdunlock"->(funx143->letCI.CPointerx144=x143inluv_stub_190_uv_rwlock_rdunlockx144)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_rwlock_tryrdlock"->(funx145->letCI.CPointerx146=x145inluv_stub_189_uv_rwlock_tryrdlockx146)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_destroy"->(funx147->letCI.CPointerx148=x147inluv_stub_188_uv_rwlock_destroyx148)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_rwlock_init"->(funx149->letCI.CPointerx150=x149inluv_stub_187_uv_rwlock_initx150)|Function(CI.Pointer_,ReturnsCI.Void),"uv_mutex_unlock"->(funx151->letCI.CPointerx152=x151inluv_stub_186_uv_mutex_unlockx152)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_mutex_trylock"->(funx153->letCI.CPointerx154=x153inluv_stub_185_uv_mutex_trylockx154)|Function(CI.Pointer_,ReturnsCI.Void),"uv_mutex_destroy"->(funx155->letCI.CPointerx156=x155inluv_stub_184_uv_mutex_destroyx156)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_mutex_init_recursive"->(funx157->letCI.CPointerx158=x157inluv_stub_183_uv_mutex_init_recursivex158)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_mutex_init"->(funx159->letCI.CPointerx160=x159inluv_stub_182_uv_mutex_initx160)|Function(CI.Pointer_,Function(CI.Funptr_,ReturnsCI.Void)),"uv_once"->(funx161x163->letCI.Static_funptrx164=x163inletCI.CPointerx162=x161inluv_stub_181_uv_oncex162x164)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"luv_once_init"->(funx165->letCI.CPointerx166=x165inluv_stub_180_luv_once_initx166)|Function(CI.Void,Returns(CI.Funptrx168)),"luv_get_once_trampoline"->(funx167->CI.make_fun_ptrx168(luv_stub_179_luv_get_once_trampolinex167))|Function(CI.Pointer_,Function(CI.Pointer_,ReturnsCI.Void)),"uv_key_set"->(funx169x171->letCI.CPointerx172=x171inletCI.CPointerx170=x169inluv_stub_178_uv_key_setx170x172)|Function(CI.Pointer_,Returns(CI.Pointerx175)),"uv_key_get"->(funx173->letCI.CPointerx174=x173inCI.make_ptrx175(luv_stub_177_uv_key_getx174))|Function(CI.Pointer_,ReturnsCI.Void),"uv_key_delete"->(funx176->letCI.CPointerx177=x176inluv_stub_176_uv_key_deletex177)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_key_create"->(funx178->letCI.CPointerx179=x178inluv_stub_175_uv_key_createx179)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool))),"uv_thread_equal"->(funx180x182->letCI.CPointerx183=x182inletCI.CPointerx181=x180inluv_stub_174_uv_thread_equalx181x183)|Function(CI.Void,Returns(CI.View{CI.ty=(CI.Struct_asx185);read=x186;_})),"uv_thread_self"->(funx184->x186(CI.make_structuredx185(luv_stub_173_uv_thread_selfx184)))|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Nativeint,Function(CI.PrimitiveCI.Nativeint,Returns(CI.PrimitiveCI.Int))))),"luv_thread_create_c"->(funx187x189x191x192->letCI.CPointerx190=x189inletCI.CPointerx188=x187inluv_stub_172_luv_thread_create_cx188x190x191x192)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))))),"uv_thread_create_ex"->(funx193x195x197x199->letCI.CPointerx200=x199inletCI.Static_funptrx198=x197inletCI.CPointerx196=x195inletCI.CPointerx194=x193inluv_stub_171_uv_thread_create_exx194x196x198x200)|Function(CI.Void,Returns(CI.Funptrx202)),"luv_get_thread_trampoline"->(funx201->CI.make_fun_ptrx202(luv_stub_170_luv_get_thread_trampolinex201))|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_queue_work"->(funx203x205x207x209->letCI.Static_funptrx210=x209inletCI.Static_funptrx208=x207inletCI.CPointerx206=x205inletCI.CPointerx204=x203inluv_stub_169_uv_queue_workx204x206x208x210)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Nativeint,Function(CI.PrimitiveCI.Nativeint,Returns(CI.PrimitiveCI.Bool)))),"luv_add_c_function_and_argument"->(funx211x213x214->letCI.CPointerx212=x211inluv_stub_168_luv_add_c_function_and_argumentx212x213x214)|Function(CI.Void,Returns(CI.Funptrx216)),"luv_get_after_c_work_trampoline"->(funx215->CI.make_fun_ptrx216(luv_stub_167_luv_get_after_c_work_trampolinex215))|Function(CI.Void,Returns(CI.Funptrx218)),"luv_get_c_work_trampoline"->(funx217->CI.make_fun_ptrx218(luv_stub_166_luv_get_c_work_trampolinex217))|Function(CI.Void,Returns(CI.Funptrx220)),"luv_get_after_work_trampoline"->(funx219->CI.make_fun_ptrx220(luv_stub_165_luv_get_after_work_trampolinex219))|Function(CI.Void,Returns(CI.Funptrx222)),"luv_get_work_trampoline"->(funx221->CI.make_fun_ptrx222(luv_stub_164_luv_get_work_trampolinex221))|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.PrimitiveCI.Int,ReturnsCI.Void))),"memcpy"->(funx223x225x226->letCI.CPointerx224=x223inluv_stub_163_memcpyx224x225x226)|Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void))),"memcpy"->(funx227x228x230->letCI.CPointerx229=x228inluv_stub_162_memcpyx227x229x230)|Function(CI.View{CI.ty=CI.Struct_;write=x232;_},Returns(CI.PrimitiveCI.Int)),"uv_open_osfhandle"->(funx231->letCI.CPointerx234=Ctypes.addr(x232x231)inletx233=x234inluv_stub_161_uv_open_osfhandlex233)|Function(CI.PrimitiveCI.Int,Returns(CI.View{CI.ty=(CI.Struct_asx236);read=x237;_})),"uv_get_osfhandle"->(funx235->x237(CI.make_structuredx236(luv_stub_160_uv_get_osfhandlex235)))|Function(CI.Pointer_,Returns(CI.View{CI.ty=CI.Pointerx240;read=x241;_})),"luv_dlerror"->(funx238->letCI.CPointerx239=x238inx241(CI.make_ptrx240(luv_stub_159_luv_dlerrorx239)))|Function(CI.Pointer_,Function(CI.OCamlCI.String,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)))),"uv_dlsym"->(funx242x244x245->letCI.CPointerx246=x245inletCI.CPointerx243=x242inluv_stub_158_uv_dlsymx243x244x246)|Function(CI.Pointer_,ReturnsCI.Void),"uv_dlclose"->(funx247->letCI.CPointerx248=x247inluv_stub_157_uv_dlclosex248)|Function(CI.OCamlCI.String,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool))),"uv_dlopen"->(funx249x250->letCI.CPointerx251=x250inluv_stub_156_uv_dlopenx249x251)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))))),"luv_getnameinfo"->(funx252x254x256x258x260->letCI.CPointerx259=x258inletCI.Static_funptrx257=x256inletCI.CPointerx255=x254inletCI.CPointerx253=x252inluv_stub_155_luv_getnameinfox253x255x257x259x260)|Function(CI.Void,Returns(CI.Funptrx262)),"luv_get_getnameinfo_trampoline"->(funx261->CI.make_fun_ptrx262(luv_stub_154_luv_get_getnameinfo_trampolinex261))|Function(CI.Pointer_,ReturnsCI.Void),"uv_freeaddrinfo"->(funx263->letCI.CPointerx264=x263inluv_stub_153_uv_freeaddrinfox264)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.View{CI.ty=CI.Pointer_;write=x272;_},Function(CI.View{CI.ty=CI.Pointer_;write=x276;_},Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))))))),"uv_getaddrinfo"->(funx265x267x269x271x275x279->letCI.CPointerx280=x279inletCI.CPointerx278=x276x275inletCI.CPointerx274=x272x271inletCI.Static_funptrx270=x269inletCI.CPointerx268=x267inletCI.CPointerx266=x265inletx273=x274inletx277=x278inluv_stub_152_uv_getaddrinfox266x268x270x273x277x280)|Function(CI.Void,Returns(CI.Funptrx282)),"luv_get_getaddrinfo_trampoline"->(funx281->CI.make_fun_ptrx282(luv_stub_151_luv_get_getaddrinfo_trampolinex281))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_fs_poll_stop"->(funx283->letCI.CPointerx284=x283inluv_stub_150_uv_fs_poll_stopx284)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.OCamlCI.String,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))))),"luv_fs_poll_start"->(funx285x287x289x290->letCI.Static_funptrx288=x287inletCI.CPointerx286=x285inluv_stub_149_luv_fs_poll_startx286x288x289x290)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_fs_poll_init"->(funx291x293->letCI.CPointerx294=x293inletCI.CPointerx292=x291inluv_stub_148_uv_fs_poll_initx292x294)|Function(CI.Void,Returns(CI.Funptrx296)),"luv_get_fs_poll_trampoline"->(funx295->CI.make_fun_ptrx296(luv_stub_147_luv_get_fs_poll_trampolinex295))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_fs_event_stop"->(funx297->letCI.CPointerx298=x297inluv_stub_146_uv_fs_event_stopx298)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.OCamlCI.String,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))))),"luv_fs_event_start"->(funx299x301x303x304->letCI.Static_funptrx302=x301inletCI.CPointerx300=x299inluv_stub_145_luv_fs_event_startx300x302x303x304)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_fs_event_init"->(funx305x307->letCI.CPointerx308=x307inletCI.CPointerx306=x305inluv_stub_144_uv_fs_event_initx306x308)|Function(CI.Void,Returns(CI.Funptrx310)),"luv_get_fs_event_trampoline"->(funx309->CI.make_fun_ptrx310(luv_stub_143_luv_get_fs_event_trampolinex309))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_process_get_pid"->(funx311->letCI.CPointerx312=x311inluv_stub_142_uv_process_get_pidx312)|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"->(funx315x317->letCI.CPointerx316=x315inluv_stub_140_uv_process_killx316x317)|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"->(funx318x320x322x324x326x328x329x331x332x333x335x336x337x338x340x341->letCI.CPointerx339=x338inletCI.CPointerx334=x333inletCI.CPointerx330=x329inletCI.CPointerx327=x326inletCI.CPointerx325=x324inletCI.Static_funptrx323=x322inletCI.CPointerx321=x320inletCI.CPointerx319=x318inluv_stub_139_luv_spawnx319x321x323x325x327x328x330x331x332x334x335x336x337x339x340x341)|Function(CI.Void,ReturnsCI.Void),"uv_disable_stdio_inheritance"->luv_stub_138_uv_disable_stdio_inheritance|Function(CI.Void,Returns(CI.Funptrx344)),"luv_null_exit_trampoline"->(funx343->CI.make_fun_ptrx344(luv_stub_137_luv_null_exit_trampolinex343))|Function(CI.Void,Returns(CI.Funptrx346)),"luv_get_exit_trampoline"->(funx345->CI.make_fun_ptrx346(luv_stub_136_luv_get_exit_trampolinex345))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Size_t)),"uv_udp_get_send_queue_count"->(funx347->letCI.CPointerx348=x347inluv_stub_135_uv_udp_get_send_queue_countx348)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Size_t)),"uv_udp_get_send_queue_size"->(funx349->letCI.CPointerx350=x349inluv_stub_134_uv_udp_get_send_queue_sizex350)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_udp_using_recvmmsg"->(funx351->letCI.CPointerx352=x351inluv_stub_133_uv_udp_using_recvmmsgx352)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_udp_recv_stop"->(funx353->letCI.CPointerx354=x353inluv_stub_132_uv_udp_recv_stopx354)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"luv_udp_recv_start"->(funx355x357x359->letCI.Static_funptrx360=x359inletCI.Static_funptrx358=x357inletCI.CPointerx356=x355inluv_stub_131_luv_udp_recv_startx356x358x360)|Function(CI.Void,Returns(CI.Funptrx362)),"luv_get_recv_trampoline"->(funx361->CI.make_fun_ptrx362(luv_stub_130_luv_get_recv_trampolinex361))|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))))),"uv_udp_try_send"->(funx363x365x367x368->letCI.CPointerx369=x368inletCI.CPointerx366=x365inletCI.CPointerx364=x363inluv_stub_129_uv_udp_try_sendx364x366x367x369)|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"->(funx370x372x374x376x377x379->letCI.Static_funptrx380=x379inletCI.CPointerx378=x377inletCI.CPointerx375=x374inletCI.CPointerx373=x372inletCI.CPointerx371=x370inluv_stub_128_uv_udp_sendx371x373x375x376x378x380)|Function(CI.Void,Returns(CI.Funptrx382)),"luv_get_send_trampoline"->(funx381->CI.make_fun_ptrx382(luv_stub_127_luv_get_send_trampolinex381))|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_ttl"->(funx383x385->letCI.CPointerx384=x383inluv_stub_126_uv_udp_set_ttlx384x385)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_broadcast"->(funx386x388->letCI.CPointerx387=x386inluv_stub_125_uv_udp_set_broadcastx387x388)|Function(CI.Pointer_,Function(CI.OCamlCI.String,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_multicast_interface"->(funx389x391->letCI.CPointerx390=x389inluv_stub_124_uv_udp_set_multicast_interfacex390x391)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_multicast_ttl"->(funx392x394->letCI.CPointerx393=x392inluv_stub_123_uv_udp_set_multicast_ttlx393x394)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_udp_set_multicast_loop"->(funx395x397->letCI.CPointerx396=x395inluv_stub_122_uv_udp_set_multicast_loopx396x397)|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=x404;_},Returns(CI.PrimitiveCI.Int)))))),"uv_udp_set_source_membership"->(funx398x400x401x402x403->letCI.CPointerx399=x398inletx405=x404x403inluv_stub_121_uv_udp_set_source_membershipx399x400x401x402x405)|Function(CI.Pointer_,Function(CI.OCamlCI.String,Function(CI.OCamlCI.String,Function(CI.View{CI.ty=CI.PrimitiveCI.Uint32_t;write=x411;_},Returns(CI.PrimitiveCI.Int))))),"uv_udp_set_membership"->(funx406x408x409x410->letCI.CPointerx407=x406inletx412=x411x410inluv_stub_120_uv_udp_set_membershipx407x408x409x412)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_udp_getsockname"->(funx413x415x417->letCI.CPointerx418=x417inletCI.CPointerx416=x415inletCI.CPointerx414=x413inluv_stub_119_uv_udp_getsocknamex414x416x418)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_udp_getpeername"->(funx419x421x423->letCI.CPointerx424=x423inletCI.CPointerx422=x421inletCI.CPointerx420=x419inluv_stub_118_uv_udp_getpeernamex420x422x424)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_udp_connect"->(funx425x427->letCI.CPointerx428=x427inletCI.CPointerx426=x425inluv_stub_117_uv_udp_connectx426x428)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_udp_bind"->(funx429x431x433->letCI.CPointerx432=x431inletCI.CPointerx430=x429inluv_stub_116_uv_udp_bindx430x432x433)|Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Struct_;write=x437;_},Returns(CI.PrimitiveCI.Int))),"uv_udp_open"->(funx434x436->letCI.CPointerx439=Ctypes.addr(x437x436)inletCI.CPointerx435=x434inletx438=x439inluv_stub_115_uv_udp_openx435x438)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int)))),"uv_udp_init_ex"->(funx440x442x444->letCI.CPointerx443=x442inletCI.CPointerx441=x440inluv_stub_114_uv_udp_init_exx441x443x444)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_udp_init"->(funx445x447->letCI.CPointerx448=x447inletCI.CPointerx446=x445inluv_stub_113_uv_udp_initx446x448)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_tty_get_vterm_state"->(funx449->letCI.CPointerx450=x449inluv_stub_112_uv_tty_get_vterm_statex450)|Function(CI.View{CI.ty=CI.PrimitiveCI.Uint32_t;write=x452;_},ReturnsCI.Void),"uv_tty_set_vterm_state"->(funx451->letx453=x452x451inluv_stub_111_uv_tty_set_vterm_statex453)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_tty_get_winsize"->(funx454x456x458->letCI.CPointerx459=x458inletCI.CPointerx457=x456inletCI.CPointerx455=x454inluv_stub_110_uv_tty_get_winsizex455x457x459)|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=x464;_},Returns(CI.PrimitiveCI.Int))),"uv_tty_set_mode"->(funx461x463->letCI.CPointerx462=x461inletx465=x464x463inluv_stub_108_uv_tty_set_modex462x465)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))))),"uv_tty_init"->(funx466x468x470x471->letCI.CPointerx469=x468inletCI.CPointerx467=x466inluv_stub_107_uv_tty_initx467x469x470x471)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_pipe_chmod"->(funx472x474->letCI.CPointerx473=x472inluv_stub_106_uv_pipe_chmodx473x474)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_pipe_pending_type"->(funx475->letCI.CPointerx476=x475inluv_stub_105_uv_pipe_pending_typex476)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_pipe_pending_count"->(funx477->letCI.CPointerx478=x477inluv_stub_104_uv_pipe_pending_countx478)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,ReturnsCI.Void)),"uv_pipe_pending_instances"->(funx479x481->letCI.CPointerx480=x479inluv_stub_103_uv_pipe_pending_instancesx480x481)|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_pipe_getpeername"->(funx482x484x485->letCI.CPointerx486=x485inletCI.CPointerx483=x482inluv_stub_102_uv_pipe_getpeernamex483x484x486)|Function(CI.Pointer_,Function(CI.OCamlCI.Bytes,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_pipe_getsockname"->(funx487x489x490->letCI.CPointerx491=x490inletCI.CPointerx488=x487inluv_stub_101_uv_pipe_getsocknamex488x489x491)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.OCamlCI.String,Function(CI.Funptr_,ReturnsCI.Void)))),"uv_pipe_connect"->(funx492x494x496x497->letCI.Static_funptrx498=x497inletCI.CPointerx495=x494inletCI.CPointerx493=x492inluv_stub_100_uv_pipe_connectx493x495x496x498)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int))),"uv_pipe_open"->(funx499x501->letCI.CPointerx500=x499inluv_stub_99_uv_pipe_openx500x501)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_pipe"->(funx502x504x505->letCI.CPointerx503=x502inluv_stub_98_uv_pipex503x504x505)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int)))),"uv_pipe_init"->(funx506x508x510->letCI.CPointerx509=x508inletCI.CPointerx507=x506inluv_stub_97_uv_pipe_initx507x509x510)|Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))),"uv_tcp_close_reset"->(funx511x513->letCI.Static_funptrx514=x513inletCI.CPointerx512=x511inluv_stub_96_uv_tcp_close_resetx512x514)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_tcp_connect"->(funx515x517x519x521->letCI.Static_funptrx522=x521inletCI.CPointerx520=x519inletCI.CPointerx518=x517inletCI.CPointerx516=x515inluv_stub_95_uv_tcp_connectx516x518x520x522)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_getpeername"->(funx523x525x527->letCI.CPointerx528=x527inletCI.CPointerx526=x525inletCI.CPointerx524=x523inluv_stub_94_uv_tcp_getpeernamex524x526x528)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_getsockname"->(funx529x531x533->letCI.CPointerx534=x533inletCI.CPointerx532=x531inletCI.CPointerx530=x529inluv_stub_93_uv_tcp_getsocknamex530x532x534)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_bind"->(funx535x537x539->letCI.CPointerx538=x537inletCI.CPointerx536=x535inluv_stub_92_uv_tcp_bindx536x538x539)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_tcp_simultaneous_accepts"->(funx540x542->letCI.CPointerx541=x540inluv_stub_91_uv_tcp_simultaneous_acceptsx541x542)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_keepalive"->(funx543x545x546->letCI.CPointerx544=x543inluv_stub_90_uv_tcp_keepalivex544x545x546)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_tcp_nodelay"->(funx547x549->letCI.CPointerx548=x547inluv_stub_89_uv_tcp_nodelayx548x549)|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"->(funx550x551x552x554x555->letCI.CPointerx553=x552inluv_stub_88_uv_socketpairx550x551x553x554x555)|Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Struct_;write=x559;_},Returns(CI.PrimitiveCI.Int))),"uv_tcp_open"->(funx556x558->letCI.CPointerx561=Ctypes.addr(x559x558)inletCI.CPointerx557=x556inletx560=x561inluv_stub_87_uv_tcp_openx557x560)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int)))),"uv_tcp_init_ex"->(funx562x564x566->letCI.CPointerx565=x564inletCI.CPointerx563=x562inluv_stub_86_uv_tcp_init_exx563x565x566)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_tcp_init"->(funx567x569->letCI.CPointerx570=x569inletCI.CPointerx568=x567inluv_stub_85_uv_tcp_initx568x570)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Size_t)),"uv_stream_get_write_queue_size"->(funx571->letCI.CPointerx572=x571inluv_stub_84_uv_stream_get_write_queue_sizex572)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Bool,Returns(CI.PrimitiveCI.Int))),"uv_stream_set_blocking"->(funx573x575->letCI.CPointerx574=x573inluv_stub_83_uv_stream_set_blockingx574x575)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_is_writable"->(funx576->letCI.CPointerx577=x576inluv_stub_82_uv_is_writablex577)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_is_readable"->(funx578->letCI.CPointerx579=x578inluv_stub_81_uv_is_readablex579)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint,Returns(CI.PrimitiveCI.Int)))),"uv_try_write"->(funx580x582x584->letCI.CPointerx583=x582inletCI.CPointerx581=x580inluv_stub_80_uv_try_writex581x583x584)|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"->(funx585x587x589x591x592x594->letCI.Static_funptrx595=x594inletCI.CPointerx593=x592inletCI.CPointerx590=x589inletCI.CPointerx588=x587inletCI.CPointerx586=x585inluv_stub_79_uv_write2x586x588x590x591x593x595)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_read_stop"->(funx596->letCI.CPointerx597=x596inluv_stub_78_uv_read_stopx597)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"luv_read_start"->(funx598x600x602->letCI.Static_funptrx603=x602inletCI.Static_funptrx601=x600inletCI.CPointerx599=x598inluv_stub_77_luv_read_startx599x601x603)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_accept"->(funx604x606->letCI.CPointerx607=x606inletCI.CPointerx605=x604inluv_stub_76_uv_acceptx605x607)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"uv_listen"->(funx608x610x611->letCI.Static_funptrx612=x611inletCI.CPointerx609=x608inluv_stub_75_uv_listenx609x610x612)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"uv_shutdown"->(funx613x615x617->letCI.Static_funptrx618=x617inletCI.CPointerx616=x615inletCI.CPointerx614=x613inluv_stub_74_uv_shutdownx614x616x618)|Function(CI.Void,Returns(CI.Funptrx620)),"luv_get_read_trampoline"->(funx619->CI.make_fun_ptrx620(luv_stub_73_luv_get_read_trampolinex619))|Function(CI.Void,Returns(CI.Funptrx622)),"luv_get_connection_trampoline"->(funx621->CI.make_fun_ptrx622(luv_stub_72_luv_get_connection_trampolinex621))|Function(CI.Void,Returns(CI.Funptrx624)),"luv_get_write_trampoline"->(funx623->CI.make_fun_ptrx624(luv_stub_71_luv_get_write_trampolinex623))|Function(CI.Void,Returns(CI.Funptrx626)),"luv_get_shutdown_trampoline"->(funx625->CI.make_fun_ptrx626(luv_stub_70_luv_get_shutdown_trampolinex625))|Function(CI.Void,Returns(CI.Funptrx628)),"luv_get_connect_trampoline"->(funx627->CI.make_fun_ptrx628(luv_stub_69_luv_get_connect_trampolinex627))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_signal_stop"->(funx629->letCI.CPointerx630=x629inluv_stub_68_uv_signal_stopx630)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_signal_start_oneshot"->(funx631x633x635->letCI.Static_funptrx634=x633inletCI.CPointerx632=x631inluv_stub_67_uv_signal_start_oneshotx632x634x635)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_signal_start"->(funx636x638x640->letCI.Static_funptrx639=x638inletCI.CPointerx637=x636inluv_stub_66_uv_signal_startx637x639x640)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_signal_init"->(funx641x643->letCI.CPointerx644=x643inletCI.CPointerx642=x641inluv_stub_65_uv_signal_initx642x644)|Function(CI.Void,Returns(CI.Funptrx646)),"luv_get_signal_trampoline"->(funx645->CI.make_fun_ptrx646(luv_stub_64_luv_get_signal_trampolinex645))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_poll_stop"->(funx647->letCI.CPointerx648=x647inluv_stub_63_uv_poll_stopx648)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"uv_poll_start"->(funx649x651x652->letCI.Static_funptrx653=x652inletCI.CPointerx650=x649inluv_stub_62_uv_poll_startx650x651x653)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Struct_;write=x659;_},Returns(CI.PrimitiveCI.Int)))),"uv_poll_init_socket"->(funx654x656x658->letCI.CPointerx661=Ctypes.addr(x659x658)inletCI.CPointerx657=x656inletCI.CPointerx655=x654inletx660=x661inluv_stub_61_uv_poll_init_socketx655x657x660)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_poll_init"->(funx662x664x666->letCI.CPointerx665=x664inletCI.CPointerx663=x662inluv_stub_60_uv_poll_initx663x665x666)|Function(CI.Void,Returns(CI.Funptrx668)),"luv_get_poll_trampoline"->(funx667->CI.make_fun_ptrx668(luv_stub_59_luv_get_poll_trampolinex667))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_async_send"->(funx669->letCI.CPointerx670=x669inluv_stub_58_uv_async_sendx670)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))),"uv_async_init"->(funx671x673x675->letCI.Static_funptrx676=x675inletCI.CPointerx674=x673inletCI.CPointerx672=x671inluv_stub_57_uv_async_initx672x674x676)|Function(CI.Void,Returns(CI.Funptrx678)),"luv_get_async_trampoline"->(funx677->CI.make_fun_ptrx678(luv_stub_56_luv_get_async_trampolinex677))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_idle_stop"->(funx679->letCI.CPointerx680=x679inluv_stub_55_uv_idle_stopx680)|Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))),"uv_idle_start"->(funx681x683->letCI.Static_funptrx684=x683inletCI.CPointerx682=x681inluv_stub_54_uv_idle_startx682x684)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_idle_init"->(funx685x687->letCI.CPointerx688=x687inletCI.CPointerx686=x685inluv_stub_53_uv_idle_initx686x688)|Function(CI.Void,Returns(CI.Funptrx690)),"luv_get_idle_trampoline"->(funx689->CI.make_fun_ptrx690(luv_stub_52_luv_get_idle_trampolinex689))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_check_stop"->(funx691->letCI.CPointerx692=x691inluv_stub_51_uv_check_stopx692)|Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))),"uv_check_start"->(funx693x695->letCI.Static_funptrx696=x695inletCI.CPointerx694=x693inluv_stub_50_uv_check_startx694x696)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_check_init"->(funx697x699->letCI.CPointerx700=x699inletCI.CPointerx698=x697inluv_stub_49_uv_check_initx698x700)|Function(CI.Void,Returns(CI.Funptrx702)),"luv_get_check_trampoline"->(funx701->CI.make_fun_ptrx702(luv_stub_48_luv_get_check_trampolinex701))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_prepare_stop"->(funx703->letCI.CPointerx704=x703inluv_stub_47_uv_prepare_stopx704)|Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))),"uv_prepare_start"->(funx705x707->letCI.Static_funptrx708=x707inletCI.CPointerx706=x705inluv_stub_46_uv_prepare_startx706x708)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_prepare_init"->(funx709x711->letCI.CPointerx712=x711inletCI.CPointerx710=x709inluv_stub_45_uv_prepare_initx710x712)|Function(CI.Void,Returns(CI.Funptrx714)),"luv_get_prepare_trampoline"->(funx713->CI.make_fun_ptrx714(luv_stub_44_luv_get_prepare_trampolinex713))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Uint64_t)),"uv_timer_get_due_in"->(funx715->letCI.CPointerx716=x715inluv_stub_43_uv_timer_get_due_inx716)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Uint64_t)),"uv_timer_get_repeat"->(funx717->letCI.CPointerx718=x717inluv_stub_42_uv_timer_get_repeatx718)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint64_t,ReturnsCI.Void)),"uv_timer_set_repeat"->(funx719x721->letCI.CPointerx720=x719inluv_stub_41_uv_timer_set_repeatx720x721)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_timer_again"->(funx722->letCI.CPointerx723=x722inluv_stub_40_uv_timer_againx723)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_timer_stop"->(funx724->letCI.CPointerx725=x724inluv_stub_39_uv_timer_stopx725)|Function(CI.Pointer_,Function(CI.Funptr_,Function(CI.PrimitiveCI.Uint64_t,Function(CI.PrimitiveCI.Uint64_t,Returns(CI.PrimitiveCI.Int))))),"uv_timer_start"->(funx726x728x730x731->letCI.Static_funptrx729=x728inletCI.CPointerx727=x726inluv_stub_38_uv_timer_startx727x729x730x731)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_timer_init"->(funx732x734->letCI.CPointerx735=x734inletCI.CPointerx733=x732inluv_stub_37_uv_timer_initx733x735)|Function(CI.Void,Returns(CI.Funptrx737)),"luv_get_timer_trampoline"->(funx736->CI.make_fun_ptrx737(luv_stub_36_luv_get_timer_trampolinex736))|Function(CI.Pointer_,Function(CI.Pointer_,ReturnsCI.Void)),"uv_req_set_data"->(funx738x740->letCI.CPointerx741=x740inletCI.CPointerx739=x738inluv_stub_35_uv_req_set_datax739x741)|Function(CI.Pointer_,Returns(CI.Pointerx744)),"uv_req_get_data"->(funx742->letCI.CPointerx743=x742inCI.make_ptrx744(luv_stub_34_uv_req_get_datax743))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_cancel"->(funx745->letCI.CPointerx746=x745inluv_stub_33_uv_cancelx746)|Function(CI.Pointer_,Function(CI.Pointer_,ReturnsCI.Void)),"uv_handle_set_data"->(funx747x749->letCI.CPointerx750=x749inletCI.CPointerx748=x747inluv_stub_32_uv_handle_set_datax748x750)|Function(CI.Pointer_,Returns(CI.Pointerx753)),"uv_handle_get_data"->(funx751->letCI.CPointerx752=x751inCI.make_ptrx753(luv_stub_31_uv_handle_get_datax752))|Function(CI.Pointer_,Returns(CI.Pointerx756)),"uv_handle_get_loop"->(funx754->letCI.CPointerx755=x754inCI.make_ptrx756(luv_stub_30_uv_handle_get_loopx755))|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_fileno"->(funx757x759->letCI.CPointerx760=x759inletCI.CPointerx758=x757inluv_stub_29_uv_filenox758x760)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_recv_buffer_size"->(funx761x763->letCI.CPointerx764=x763inletCI.CPointerx762=x761inluv_stub_28_uv_recv_buffer_sizex762x764)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_send_buffer_size"->(funx765x767->letCI.CPointerx768=x767inletCI.CPointerx766=x765inluv_stub_27_uv_send_buffer_sizex766x768)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_has_ref"->(funx769->letCI.CPointerx770=x769inluv_stub_26_uv_has_refx770)|Function(CI.Pointer_,ReturnsCI.Void),"uv_unref"->(funx771->letCI.CPointerx772=x771inluv_stub_25_uv_unrefx772)|Function(CI.Pointer_,ReturnsCI.Void),"uv_ref"->(funx773->letCI.CPointerx774=x773inluv_stub_24_uv_refx774)|Function(CI.Pointer_,Function(CI.Funptr_,ReturnsCI.Void)),"uv_close"->(funx775x777->letCI.Static_funptrx778=x777inletCI.CPointerx776=x775inluv_stub_23_uv_closex776x778)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_is_closing"->(funx779->letCI.CPointerx780=x779inluv_stub_22_uv_is_closingx780)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_is_active"->(funx781->letCI.CPointerx782=x781inluv_stub_21_uv_is_activex782)|Function(CI.Void,Returns(CI.Funptrx784)),"luv_get_alloc_trampoline"->(funx783->CI.make_fun_ptrx784(luv_stub_20_luv_get_alloc_trampolinex783))|Function(CI.Void,Returns(CI.Funptrx786)),"luv_get_close_trampoline"->(funx785->CI.make_fun_ptrx786(luv_stub_19_luv_get_close_trampolinex785))|Function(CI.Void,ReturnsCI.Void),"uv_library_shutdown"->luv_stub_18_uv_library_shutdown|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_loop_fork"->(funx788->letCI.CPointerx789=x788inluv_stub_17_uv_loop_forkx789)|Function(CI.Pointer_,ReturnsCI.Void),"uv_update_time"->(funx790->letCI.CPointerx791=x790inluv_stub_16_uv_update_timex791)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Uint64_t)),"uv_now"->(funx792->letCI.CPointerx793=x792inluv_stub_15_uv_nowx793)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_backend_timeout"->(funx794->letCI.CPointerx795=x794inluv_stub_14_uv_backend_timeoutx795)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_backend_fd"->(funx796->letCI.CPointerx797=x796inluv_stub_13_uv_backend_fdx797)|Function(CI.Pointer_,ReturnsCI.Void),"uv_stop"->(funx798->letCI.CPointerx799=x798inluv_stub_12_uv_stopx799)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_loop_alive"->(funx800->letCI.CPointerx801=x800inluv_stub_11_uv_loop_alivex801)|Function(CI.Void,Returns(CI.Pointerx803)),"uv_default_loop"->(funx802->CI.make_ptrx803(luv_stub_10_uv_default_loopx802))|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_loop_close"->(funx804->letCI.CPointerx805=x804inluv_stub_9_uv_loop_closex805)|Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Returns(CI.PrimitiveCI.Int)))),"uv_loop_configure"->(funx806x808x809->letCI.CPointerx807=x806inluv_stub_8_uv_loop_configurex807x808x809)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_loop_init"->(funx810->letCI.CPointerx811=x810inluv_stub_7_uv_loop_initx811)|Function(CI.Void,Returns(CI.View{CI.ty=CI.Pointerx813;read=x814;_})),"luv_version_string"->(funx812->x814(CI.make_ptrx813(luv_stub_6_luv_version_stringx812)))|Function(CI.Void,Returns(CI.PrimitiveCI.Int)),"uv_version"->luv_stub_5_uv_version|Function(CI.Void,Returns(CI.View{CI.ty=CI.Pointerx817;read=x818;_})),"luv_version_suffix"->(funx816->x818(CI.make_ptrx817(luv_stub_4_luv_version_suffixx816)))|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"->(funx826x828x830x832x833x834->letCI.Static_funptrx835=x834inletCI.CPointerx831=x830inletCI.CPointerx829=x828inletCI.CPointerx827=x826inluv_stub_blocking_57_uv_randomx827x829x831x832x833x835)|Function(CI.PrimitiveCI.Int,ReturnsCI.Void),"uv_sleep"->luv_stub_blocking_56_uv_sleep|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Bool)),"uv_barrier_wait"->(funx837->letCI.CPointerx838=x837inluv_stub_blocking_55_uv_barrier_waitx838)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Uint64_t,Returns(CI.PrimitiveCI.Int)))),"uv_cond_timedwait"->(funx839x841x843->letCI.CPointerx842=x841inletCI.CPointerx840=x839inluv_stub_blocking_54_uv_cond_timedwaitx840x842x843)|Function(CI.Pointer_,Function(CI.Pointer_,ReturnsCI.Void)),"uv_cond_wait"->(funx844x846->letCI.CPointerx847=x846inletCI.CPointerx845=x844inluv_stub_blocking_53_uv_cond_waitx845x847)|Function(CI.Pointer_,ReturnsCI.Void),"uv_sem_wait"->(funx848->letCI.CPointerx849=x848inluv_stub_blocking_52_uv_sem_waitx849)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_wrlock"->(funx850->letCI.CPointerx851=x850inluv_stub_blocking_51_uv_rwlock_wrlockx851)|Function(CI.Pointer_,ReturnsCI.Void),"uv_rwlock_rdlock"->(funx852->letCI.CPointerx853=x852inluv_stub_blocking_50_uv_rwlock_rdlockx853)|Function(CI.Pointer_,ReturnsCI.Void),"uv_mutex_lock"->(funx854->letCI.CPointerx855=x854inluv_stub_blocking_49_uv_mutex_lockx855)|Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int)),"uv_thread_join"->(funx856->letCI.CPointerx857=x856inluv_stub_blocking_48_uv_thread_joinx857)|Function(CI.Pointer_,Returns(CI.Pointerx860)),"uv_fs_get_statbuf"->(funx858->letCI.CPointerx859=x858inCI.make_ptrx860(luv_stub_blocking_47_uv_fs_get_statbufx859))|Function(CI.Pointer_,Returns(CI.View{CI.ty=CI.Pointerx863;read=x864;_})),"luv_fs_get_path"->(funx861->letCI.CPointerx862=x861inx864(CI.make_ptrx863(luv_stub_blocking_46_luv_fs_get_pathx862)))|Function(CI.Pointer_,Returns(CI.View{CI.ty=CI.Pointerx867;read=x868;_})),"uv_fs_get_ptr"->(funx865->letCI.CPointerx866=x865inx868(CI.make_ptrx867(luv_stub_blocking_45_uv_fs_get_ptrx866)))|Function(CI.Pointer_,Returns(CI.Pointerx871)),"uv_fs_get_ptr"->(funx869->letCI.CPointerx870=x869inCI.make_ptrx871(luv_stub_blocking_44_uv_fs_get_ptrx870))|Function(CI.Pointer_,Returns(CI.View{CI.ty=CI.PrimitiveCI.Int64_t;read=x874;_})),"uv_fs_get_result"->(funx872->letCI.CPointerx873=x872inx874(luv_stub_blocking_43_uv_fs_get_resultx873))|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x880;_},Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_lchown"->(funx875x877x879x883x884x885->letCI.Static_funptrx886=x885inletCI.CPointerx882=x880x879inletCI.CPointerx878=x877inletCI.CPointerx876=x875inletx881=x882inluv_stub_blocking_42_uv_fs_lchownx876x878x881x883x884x886)|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"->(funx887x889x891x892x893x894->letCI.Static_funptrx895=x894inletCI.CPointerx890=x889inletCI.CPointerx888=x887inluv_stub_blocking_41_uv_fs_fchownx888x890x891x892x893x895)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x901;_},Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_chown"->(funx896x898x900x904x905x906->letCI.Static_funptrx907=x906inletCI.CPointerx903=x901x900inletCI.CPointerx899=x898inletCI.CPointerx897=x896inletx902=x903inluv_stub_blocking_40_uv_fs_chownx897x899x902x904x905x907)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x913;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_realpath"->(funx908x910x912x916->letCI.Static_funptrx917=x916inletCI.CPointerx915=x913x912inletCI.CPointerx911=x910inletCI.CPointerx909=x908inletx914=x915inluv_stub_blocking_39_uv_fs_realpathx909x911x914x917)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x923;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_readlink"->(funx918x920x922x926->letCI.Static_funptrx927=x926inletCI.CPointerx925=x923x922inletCI.CPointerx921=x920inletCI.CPointerx919=x918inletx924=x925inluv_stub_blocking_38_uv_fs_readlinkx919x921x924x927)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x933;_},Function(CI.View{CI.ty=CI.Pointer_;write=x937;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_symlink"->(funx928x930x932x936x940x941->letCI.Static_funptrx942=x941inletCI.CPointerx939=x937x936inletCI.CPointerx935=x933x932inletCI.CPointerx931=x930inletCI.CPointerx929=x928inletx934=x935inletx938=x939inluv_stub_blocking_37_uv_fs_symlinkx929x931x934x938x940x942)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x948;_},Function(CI.View{CI.ty=CI.Pointer_;write=x952;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_link"->(funx943x945x947x951x955->letCI.Static_funptrx956=x955inletCI.CPointerx954=x952x951inletCI.CPointerx950=x948x947inletCI.CPointerx946=x945inletCI.CPointerx944=x943inletx949=x950inletx953=x954inluv_stub_blocking_36_uv_fs_linkx944x946x949x953x956)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x962;_},Function(CI.PrimitiveCI.Float,Function(CI.PrimitiveCI.Float,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_lutime"->(funx957x959x961x965x966x967->letCI.Static_funptrx968=x967inletCI.CPointerx964=x962x961inletCI.CPointerx960=x959inletCI.CPointerx958=x957inletx963=x964inluv_stub_blocking_35_uv_fs_lutimex958x960x963x965x966x968)|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"->(funx969x971x973x974x975x976->letCI.Static_funptrx977=x976inletCI.CPointerx972=x971inletCI.CPointerx970=x969inluv_stub_blocking_34_uv_fs_futimex970x972x973x974x975x977)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x983;_},Function(CI.PrimitiveCI.Float,Function(CI.PrimitiveCI.Float,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_utime"->(funx978x980x982x986x987x988->letCI.Static_funptrx989=x988inletCI.CPointerx985=x983x982inletCI.CPointerx981=x980inletCI.CPointerx979=x978inletx984=x985inluv_stub_blocking_33_uv_fs_utimex979x981x984x986x987x989)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_fchmod"->(funx990x992x994x995x996->letCI.Static_funptrx997=x996inletCI.CPointerx993=x992inletCI.CPointerx991=x990inluv_stub_blocking_32_uv_fs_fchmodx991x993x994x995x997)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1003;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_chmod"->(funx998x1000x1002x1006x1007->letCI.Static_funptrx1008=x1007inletCI.CPointerx1005=x1003x1002inletCI.CPointerx1001=x1000inletCI.CPointerx999=x998inletx1004=x1005inluv_stub_blocking_31_uv_fs_chmodx999x1001x1004x1006x1008)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1014;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_access"->(funx1009x1011x1013x1017x1018->letCI.Static_funptrx1019=x1018inletCI.CPointerx1016=x1014x1013inletCI.CPointerx1012=x1011inletCI.CPointerx1010=x1009inletx1015=x1016inluv_stub_blocking_30_uv_fs_accessx1010x1012x1015x1017x1019)|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"->(funx1020x1022x1024x1025x1026x1027x1028->letCI.Static_funptrx1029=x1028inletCI.CPointerx1023=x1022inletCI.CPointerx1021=x1020inluv_stub_blocking_29_uv_fs_sendfilex1021x1023x1024x1025x1026x1027x1029)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1035;_},Function(CI.View{CI.ty=CI.Pointer_;write=x1039;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_copyfile"->(funx1030x1032x1034x1038x1042x1043->letCI.Static_funptrx1044=x1043inletCI.CPointerx1041=x1039x1038inletCI.CPointerx1037=x1035x1034inletCI.CPointerx1033=x1032inletCI.CPointerx1031=x1030inletx1036=x1037inletx1040=x1041inluv_stub_blocking_28_uv_fs_copyfilex1031x1033x1036x1040x1042x1044)|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"->(funx1045x1047x1049x1050x1051->letCI.Static_funptrx1052=x1051inletCI.CPointerx1048=x1047inletCI.CPointerx1046=x1045inluv_stub_blocking_27_uv_fs_ftruncatex1046x1048x1049x1050x1052)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_fdatasync"->(funx1053x1055x1057x1058->letCI.Static_funptrx1059=x1058inletCI.CPointerx1056=x1055inletCI.CPointerx1054=x1053inluv_stub_blocking_26_uv_fs_fdatasyncx1054x1056x1057x1059)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_fsync"->(funx1060x1062x1064x1065->letCI.Static_funptrx1066=x1065inletCI.CPointerx1063=x1062inletCI.CPointerx1061=x1060inluv_stub_blocking_25_uv_fs_fsyncx1061x1063x1064x1066)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1072;_},Function(CI.View{CI.ty=CI.Pointer_;write=x1076;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_rename"->(funx1067x1069x1071x1075x1079->letCI.Static_funptrx1080=x1079inletCI.CPointerx1078=x1076x1075inletCI.CPointerx1074=x1072x1071inletCI.CPointerx1070=x1069inletCI.CPointerx1068=x1067inletx1073=x1074inletx1077=x1078inluv_stub_blocking_24_uv_fs_renamex1068x1070x1073x1077x1080)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1086;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_statfs"->(funx1081x1083x1085x1089->letCI.Static_funptrx1090=x1089inletCI.CPointerx1088=x1086x1085inletCI.CPointerx1084=x1083inletCI.CPointerx1082=x1081inletx1087=x1088inluv_stub_blocking_23_uv_fs_statfsx1082x1084x1087x1090)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_fstat"->(funx1091x1093x1095x1096->letCI.Static_funptrx1097=x1096inletCI.CPointerx1094=x1093inletCI.CPointerx1092=x1091inluv_stub_blocking_22_uv_fs_fstatx1092x1094x1095x1097)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1103;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_lstat"->(funx1098x1100x1102x1106->letCI.Static_funptrx1107=x1106inletCI.CPointerx1105=x1103x1102inletCI.CPointerx1101=x1100inletCI.CPointerx1099=x1098inletx1104=x1105inluv_stub_blocking_21_uv_fs_lstatx1099x1101x1104x1107)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1113;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_stat"->(funx1108x1110x1112x1116->letCI.Static_funptrx1117=x1116inletCI.CPointerx1115=x1113x1112inletCI.CPointerx1111=x1110inletCI.CPointerx1109=x1108inletx1114=x1115inluv_stub_blocking_20_uv_fs_statx1109x1111x1114x1117)|Function(CI.Pointer_,Function(CI.Pointer_,Returns(CI.PrimitiveCI.Int))),"uv_fs_scandir_next"->(funx1118x1120->letCI.CPointerx1121=x1120inletCI.CPointerx1119=x1118inluv_stub_blocking_19_uv_fs_scandir_nextx1119x1121)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1127;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_scandir"->(funx1122x1124x1126x1130x1131->letCI.Static_funptrx1132=x1131inletCI.CPointerx1129=x1127x1126inletCI.CPointerx1125=x1124inletCI.CPointerx1123=x1122inletx1128=x1129inluv_stub_blocking_18_uv_fs_scandirx1123x1125x1128x1130x1132)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_readdir"->(funx1133x1135x1137x1139->letCI.Static_funptrx1140=x1139inletCI.CPointerx1138=x1137inletCI.CPointerx1136=x1135inletCI.CPointerx1134=x1133inluv_stub_blocking_17_uv_fs_readdirx1134x1136x1138x1140)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_closedir"->(funx1141x1143x1145x1147->letCI.Static_funptrx1148=x1147inletCI.CPointerx1146=x1145inletCI.CPointerx1144=x1143inletCI.CPointerx1142=x1141inluv_stub_blocking_16_uv_fs_closedirx1142x1144x1146x1148)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1154;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_opendir"->(funx1149x1151x1153x1157->letCI.Static_funptrx1158=x1157inletCI.CPointerx1156=x1154x1153inletCI.CPointerx1152=x1151inletCI.CPointerx1150=x1149inletx1155=x1156inluv_stub_blocking_15_uv_fs_opendirx1150x1152x1155x1158)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1164;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_rmdir"->(funx1159x1161x1163x1167->letCI.Static_funptrx1168=x1167inletCI.CPointerx1166=x1164x1163inletCI.CPointerx1162=x1161inletCI.CPointerx1160=x1159inletx1165=x1166inluv_stub_blocking_14_uv_fs_rmdirx1160x1162x1165x1168)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1174;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_mkstemp"->(funx1169x1171x1173x1177->letCI.Static_funptrx1178=x1177inletCI.CPointerx1176=x1174x1173inletCI.CPointerx1172=x1171inletCI.CPointerx1170=x1169inletx1175=x1176inluv_stub_blocking_13_uv_fs_mkstempx1170x1172x1175x1178)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1184;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_mkdtemp"->(funx1179x1181x1183x1187->letCI.Static_funptrx1188=x1187inletCI.CPointerx1186=x1184x1183inletCI.CPointerx1182=x1181inletCI.CPointerx1180=x1179inletx1185=x1186inluv_stub_blocking_12_uv_fs_mkdtempx1180x1182x1185x1188)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1194;_},Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int)))))),"uv_fs_mkdir"->(funx1189x1191x1193x1197x1198->letCI.Static_funptrx1199=x1198inletCI.CPointerx1196=x1194x1193inletCI.CPointerx1192=x1191inletCI.CPointerx1190=x1189inletx1195=x1196inluv_stub_blocking_11_uv_fs_mkdirx1190x1192x1195x1197x1199)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1205;_},Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_unlink"->(funx1200x1202x1204x1208->letCI.Static_funptrx1209=x1208inletCI.CPointerx1207=x1205x1204inletCI.CPointerx1203=x1202inletCI.CPointerx1201=x1200inletx1206=x1207inluv_stub_blocking_10_uv_fs_unlinkx1201x1203x1206x1209)|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"->(funx1210x1212x1214x1215x1217x1218x1219->letCI.Static_funptrx1220=x1219inletCI.CPointerx1216=x1215inletCI.CPointerx1213=x1212inletCI.CPointerx1211=x1210inluv_stub_blocking_9_uv_fs_writex1211x1213x1214x1216x1217x1218x1220)|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"->(funx1221x1223x1225x1226x1228x1229x1230->letCI.Static_funptrx1231=x1230inletCI.CPointerx1227=x1226inletCI.CPointerx1224=x1223inletCI.CPointerx1222=x1221inluv_stub_blocking_8_uv_fs_readx1222x1224x1225x1227x1228x1229x1231)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1237;_},Function(CI.PrimitiveCI.Int,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))))),"uv_fs_open"->(funx1232x1234x1236x1240x1241x1242->letCI.Static_funptrx1243=x1242inletCI.CPointerx1239=x1237x1236inletCI.CPointerx1235=x1234inletCI.CPointerx1233=x1232inletx1238=x1239inluv_stub_blocking_7_uv_fs_openx1233x1235x1238x1240x1241x1243)|Function(CI.Pointer_,Function(CI.Pointer_,Function(CI.PrimitiveCI.Int,Function(CI.Funptr_,Returns(CI.PrimitiveCI.Int))))),"uv_fs_close"->(funx1244x1246x1248x1249->letCI.Static_funptrx1250=x1249inletCI.CPointerx1247=x1246inletCI.CPointerx1245=x1244inluv_stub_blocking_6_uv_fs_closex1245x1247x1248x1250)|Function(CI.Pointer_,ReturnsCI.Void),"uv_fs_req_cleanup"->(funx1251->letCI.CPointerx1252=x1251inluv_stub_blocking_5_uv_fs_req_cleanupx1252)|Function(CI.Void,Returns(CI.Funptrx1254)),"luv_null_fs_callback_pointer"->(funx1253->CI.make_fun_ptrx1254(luv_stub_blocking_4_luv_null_fs_callback_pointerx1253))|Function(CI.Void,Returns(CI.Funptrx1256)),"luv_get_fs_trampoline"->(funx1255->CI.make_fun_ptrx1256(luv_stub_blocking_3_luv_get_fs_trampolinex1255))|Function(CI.Pointer_,Function(CI.View{CI.ty=CI.Pointer_;write=x1260;_},Returns(CI.PrimitiveCI.Int))),"uv_pipe_bind"->(funx1257x1259->letCI.CPointerx1262=x1260x1259inletCI.CPointerx1258=x1257inletx1261=x1262inluv_stub_blocking_2_uv_pipe_bindx1258x1261)|Function(CI.Pointer_,Function(CI.View{CI.ty=CI.PrimitiveCI.Uint32_t;write=x1266;_},Returns(CI.PrimitiveCI.Bool))),"uv_run"->(funx1263x1265->letCI.CPointerx1264=x1263inletx1267=x1266x1265inluv_stub_blocking_1_uv_runx1264x1267)|_,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