├── .dockerignore ├── .gitignore ├── .gitlab-ci.yml ├── CMakeLists.txt ├── COPYING ├── Dockerfile ├── Dockerfile-debian ├── Dockerfile-rocky ├── Dockerfile-test ├── LICENSE ├── README.md ├── ci ├── build.sh ├── commit_verify.sh ├── copyright.py ├── create_tidy_warnings.sh ├── docker-scripts │ ├── docker-debian-startup.sh │ └── docker-main-startup.sh ├── needs_copyright.sh ├── sort_warnings.sh ├── tidy_warnings_debug_x86_64.ref └── tidy_warnings_release_x86_64.ref ├── cmake ├── git-watcher.cmake └── set-help-read-only.cmake ├── fuzzing ├── Makefile ├── README.md ├── cleaner.sh ├── enhanced_fuzz.csh ├── fuzz.sh ├── gtm_dump_core.c.patch ├── gtm_fork_n_core.c.patch ├── gtm_putmsg_list.c.patch ├── instrument.sh ├── io.h.patch ├── jobexam_process.c.patch ├── make_corpus.sh ├── ojchildioset.c.patch ├── op_fnzsigproc.c.patch ├── op_hang.c.patch ├── op_zmess.c.patch ├── op_zsystem.c.patch ├── sig_init.c.patch └── stp_gcol_src.h.patch ├── pre-commit ├── pre-rebase ├── sr_aarch64 ├── GTMDefinedTypesInitDebug.m ├── GTMDefinedTypesInitRelease.m ├── aarch64.h ├── aarch64_gtm_registers.h ├── aarch64_registers.h ├── aswp.s ├── call_dm.s ├── compswap.s ├── debug.si ├── dm_start.s ├── emit_code_sp.c ├── emit_code_sp.h ├── error.si ├── find_line_call.c ├── g_msf.si ├── incr_link_sp.h ├── linkage.si ├── make_dmode_sp.h ├── mum_tstart.s ├── mval_def.si ├── obj_filesp.c ├── op_bkpt.s ├── op_call.s ├── op_callsp.s ├── op_currtn.s ├── op_exfun.s ├── op_extcall.s ├── op_extexfun.s ├── op_extjmp.s ├── op_fetchintrrpt.s ├── op_fnget.s ├── op_fnzextract.s ├── op_forcenum.s ├── op_forchk1.s ├── op_forinit.s ├── op_forintrrpt.s ├── op_forlcldo.s ├── op_forloop.s ├── op_gettruth.s ├── op_iretmvad.s ├── op_linefetch.s ├── op_linestart.s ├── op_mprofcall.s ├── op_mprofcallsp.s ├── op_mprofexfun.s ├── op_mprofextcall.s ├── op_mprofextexfun.s ├── op_mprofforchk1.s ├── op_mprofforlcldo.s ├── op_mproflinefetch.s ├── op_mproflinestart.s ├── op_mval2bool.s ├── op_neg.s ├── op_restartpc.s ├── op_retarg.s ├── op_startintrrpt.s ├── op_sto.s ├── op_zhelp.s ├── opp_break.s ├── opp_bxrelop_contain.s ├── opp_bxrelop_equ.s ├── opp_bxrelop_follow.s ├── opp_bxrelop_gt.s ├── opp_bxrelop_lt.s ├── opp_bxrelop_ncontain.s ├── opp_bxrelop_nequ.s ├── opp_bxrelop_nfollow.s ├── opp_bxrelop_ngt.s ├── opp_bxrelop_nlt.s ├── opp_bxrelop_npattern.s ├── opp_bxrelop_nsortsafter.s ├── opp_bxrelop_pattern.s ├── opp_bxrelop_sortsafter.s ├── opp_commarg.s ├── opp_contain_retbool.s ├── opp_dmode.s ├── opp_equ_retbool.s ├── opp_equnul_retbool.s ├── opp_follow_retbool.s ├── opp_gt_retbool.s ├── opp_hardret.s ├── opp_inddevparms.s ├── opp_indfnname.s ├── opp_indfun.s ├── opp_indglvn.s ├── opp_indincr.s ├── opp_indlvadr.s ├── opp_indlvarg.s ├── opp_indlvnamadr.s ├── opp_indmerge.s ├── opp_indpat.s ├── opp_indrzshow.s ├── opp_indsavglvn.s ├── opp_indsavlvn.s ├── opp_indset.s ├── opp_indtext.s ├── opp_iretmval.s ├── opp_lt_retbool.s ├── opp_ncontain_retbool.s ├── opp_nequ_retbool.s ├── opp_nequnul_retbool.s ├── opp_newintrinsic.s ├── opp_newvar.s ├── opp_nfollow_retbool.s ├── opp_ngt_retbool.s ├── opp_nlt_retbool.s ├── opp_npattern_retbool.s ├── opp_nsortsafter_retbool.s ├── opp_pattern_retbool.s ├── opp_ret.s ├── opp_rterror.s ├── opp_setzbrk.s ├── opp_sortsafter_retbool.s ├── opp_svput.s ├── opp_tcommit.s ├── opp_trestart.s ├── opp_trollback.s ├── opp_tstart.s ├── opp_xnew.s ├── opp_zcont.s ├── opp_zg1.s ├── opp_zgoto.s ├── pseudo_ret.s ├── ttt.c └── zbreaksp.h ├── sr_armv6l ├── sr_armv7l ├── GTMDefinedTypesInitDebug.m ├── GTMDefinedTypesInitRelease.m ├── arm.h ├── arm_gtm_registers.h ├── arm_registers.h ├── aswp.s ├── call_dm.s ├── compswap.s ├── debug.si ├── dm_start.s ├── emit_code_sp.c ├── emit_code_sp.h ├── error.si ├── find_line_call.c ├── g_msf.si ├── incr_link_sp.h ├── linkage.si ├── make_dmode_sp.h ├── mum_tstart.s ├── mval_def.si ├── obj_filesp.c ├── op_bkpt.s ├── op_call.s ├── op_callsp.s ├── op_currtn.s ├── op_exfun.s ├── op_extcall.s ├── op_extexfun.s ├── op_extjmp.s ├── op_fetchintrrpt.s ├── op_fnget.s ├── op_fnzextract.s ├── op_forcenum.s ├── op_forchk1.s ├── op_forinit.s ├── op_forintrrpt.s ├── op_forlcldo.s ├── op_forloop.s ├── op_gettruth.s ├── op_iretmvad.s ├── op_linefetch.s ├── op_linestart.s ├── op_mprofcall.s ├── op_mprofcallsp.s ├── op_mprofexfun.s ├── op_mprofextcall.s ├── op_mprofextexfun.s ├── op_mprofforchk1.s ├── op_mprofforlcldo.s ├── op_mproflinefetch.s ├── op_mproflinestart.s ├── op_mval2bool.s ├── op_neg.s ├── op_restartpc.s ├── op_retarg.s ├── op_startintrrpt.s ├── op_sto.s ├── op_zhelp.s ├── opp_break.s ├── opp_bxrelop_contain.s ├── opp_bxrelop_equ.s ├── opp_bxrelop_follow.s ├── opp_bxrelop_gt.s ├── opp_bxrelop_lt.s ├── opp_bxrelop_ncontain.s ├── opp_bxrelop_nequ.s ├── opp_bxrelop_nfollow.s ├── opp_bxrelop_ngt.s ├── opp_bxrelop_nlt.s ├── opp_bxrelop_npattern.s ├── opp_bxrelop_nsortsafter.s ├── opp_bxrelop_pattern.s ├── opp_bxrelop_sortsafter.s ├── opp_commarg.s ├── opp_contain_retbool.s ├── opp_dmode.s ├── opp_equ_retbool.s ├── opp_equnul_retbool.s ├── opp_follow_retbool.s ├── opp_gt_retbool.s ├── opp_hardret.s ├── opp_inddevparms.s ├── opp_indfnname.s ├── opp_indfun.s ├── opp_indglvn.s ├── opp_indincr.s ├── opp_indlvadr.s ├── opp_indlvarg.s ├── opp_indlvnamadr.s ├── opp_indmerge.s ├── opp_indpat.s ├── opp_indrzshow.s ├── opp_indsavglvn.s ├── opp_indsavlvn.s ├── opp_indset.s ├── opp_indtext.s ├── opp_iretmval.s ├── opp_lt_retbool.s ├── opp_ncontain_retbool.s ├── opp_nequ_retbool.s ├── opp_nequnul_retbool.s ├── opp_newintrinsic.s ├── opp_newvar.s ├── opp_nfollow_retbool.s ├── opp_ngt_retbool.s ├── opp_nlt_retbool.s ├── opp_npattern_retbool.s ├── opp_nsortsafter_retbool.s ├── opp_pattern_retbool.s ├── opp_ret.s ├── opp_rterror.s ├── opp_setzbrk.s ├── opp_sortsafter_retbool.s ├── opp_svput.s ├── opp_tcommit.s ├── opp_trestart.s ├── opp_trollback.s ├── opp_tstart.s ├── opp_xnew.s ├── opp_zcont.s ├── opp_zg1.s ├── opp_zgoto.s ├── pseudo_ret.s ├── stack.si ├── ttt.c └── zbreaksp.h ├── sr_i386 ├── aswp.s ├── auto_zlink.c ├── auto_zlink.h ├── call_dm.s ├── caller_id.s ├── callg.s ├── ci_restart.s ├── compswap.s ├── dm_start.s ├── emit_code.c ├── emit_code.h ├── error.si ├── find_line_call.c ├── follow.s ├── g_msf.si ├── gtm_threadgbl_asm_access.txt ├── incr_link.c ├── linkage.si ├── make_cimode.c ├── make_dmode.c ├── masscomp.h ├── mint2mval.s ├── mum_tstart.s ├── mval2bool.s ├── mval2mint.s ├── mval2num.s ├── mval_def.si ├── obj_file.c ├── op_bkpt.s ├── op_call.s ├── op_callsp.s ├── op_contain.s ├── op_currtn.s ├── op_equ.s ├── op_equnul.s ├── op_exfun.s ├── op_extcall.s ├── op_extexfun.s ├── op_extjmp.s ├── op_fetchintrrpt.s ├── op_fnget.s ├── op_fnzextract.s ├── op_follow.s ├── op_forcenum.s ├── op_forchk1.s ├── op_forinit.s ├── op_forintrrpt.s ├── op_forlcldo.s ├── op_forloop.s ├── op_gettruth.s ├── op_iretmvad.s ├── op_linefetch.s ├── op_linestart.s ├── op_mprofcall.s ├── op_mprofcallsp.s ├── op_mprofexfun.s ├── op_mprofextcall.s ├── op_mprofextexfun.s ├── op_mprofforchk1.s ├── op_mprofforlcldo.s ├── op_mproflinefetch.s ├── op_mproflinestart.s ├── op_neg.s ├── op_numcmp.s ├── op_pattern.s ├── op_restartpc.s ├── op_retarg.s ├── op_sorts_after.s ├── op_startintrrpt.s ├── op_sto.s ├── op_zhelp.s ├── opp_break.s ├── opp_commarg.s ├── opp_dmode.s ├── opp_hardret.s ├── opp_inddevparms.s ├── opp_indfnname.s ├── opp_indfun.s ├── opp_indglvn.s ├── opp_indincr.s ├── opp_indlvadr.s ├── opp_indlvarg.s ├── opp_indlvnamadr.s ├── opp_indmerge.s ├── opp_indpat.s ├── opp_indrzshow.s ├── opp_indsavglvn.s ├── opp_indsavlvn.s ├── opp_indset.s ├── opp_indtext.s ├── opp_iretmval.s ├── opp_newintrinsic.s ├── opp_newvar.s ├── opp_ret.s ├── opp_rterror.s ├── opp_svput.s ├── opp_tcommit.s ├── opp_trestart.s ├── opp_trollback.s ├── opp_tstart.s ├── opp_xnew.s ├── opp_zcont.s ├── opp_zg1.s ├── opp_zgoto.s ├── pseudo_ret.s └── zbreaksp.h ├── sr_linux ├── arch.gtc ├── caller_id.c ├── gen_threadgbl_asm.cmake ├── genexport.csh ├── gtm_env_sp.csh ├── gtm_threadgbl_deftypes_asm.si ├── inst_flush.c ├── platform.cmake ├── release_commit.h.in └── release_name.h ├── sr_port ├── act_in_gvt.c ├── actuallist.c ├── add_atom.c ├── add_inter.h ├── adjust_frames.c ├── advancewindow.c ├── advancewindow.h ├── aio_shim.h ├── alias.h ├── alias_funcs.c ├── alloc_reg.c ├── alloc_reg.h ├── anticipatory_freeze.h ├── arit.h ├── asc2i.c ├── asc_hex2i.c ├── aswp.h ├── azl_geturxlab.c ├── azl_geturxrtn.c ├── backup_block.c ├── base_frame.c ├── bg_update.h ├── bit_clear.c ├── bit_clear.h ├── bit_set.c ├── bit_set.h ├── bm_find_blk.c ├── bm_getfree.c ├── bm_getfree.h ├── bm_setmap.c ├── bm_update.h ├── bml_busy.c ├── bml_find_busy.c ├── bml_find_busy.h ├── bml_find_free.c ├── bml_free.c ├── bml_init.c ├── bml_newmap.c ├── bml_recycled.c ├── bml_status_check.c ├── bml_status_check.h ├── bmm_find_free.c ├── bmm_find_free.h ├── bmm_init.c ├── bool2mint.c ├── bool2mint.h ├── bool2mval.c ├── bool2mval.h ├── bool_andor.c ├── bool_andor.h ├── bool_expr.c ├── bool_finish.c ├── bool_finish.h ├── bool_init.c ├── bool_init.h ├── bool_return_leftmost_triple.c ├── bool_zysqlnull.h ├── break.h ├── bt_get.c ├── bt_init.c ├── bt_malloc.c ├── bt_put.c ├── bt_refresh.c ├── buddy_list.c ├── buddy_list.h ├── bx_boollit.c ├── bx_boolop.c ├── bx_get_andor_opcode.c ├── bx_insert_oc_andor.c ├── bx_relop.c ├── bx_tail.c ├── cache.h ├── cache_cleanup.c ├── cache_cleanup.h ├── cache_get.c ├── cache_init.c ├── cache_put.c ├── cache_stats.c ├── cache_table_rebuild.c ├── cachectl.h ├── cacheflush.c ├── cacheflush.h ├── caller_id.c ├── caller_id.h ├── callg.h ├── callg_nc.c ├── callg_signal.c ├── ccp.h ├── ccp_cluster_lock_wake.h ├── ccpact.h ├── ccpact_tab.h ├── cdb_sc.h ├── cdb_sc_table.h ├── cdbg_dump.c ├── cdbg_dump.h ├── ceil_log2.c ├── ceprep_file.c ├── cert_blk.c ├── cert_blk.h ├── cg_var.c ├── cg_var.h ├── cgp.h ├── change_reg.c ├── change_reg.h ├── chk2lev.m ├── chkop.m ├── chktchain.c ├── cli_get_str_ele.c ├── cli_port.c ├── cliif.h ├── cmd.c ├── cmd.h ├── cmd_qlf.h ├── cmerrors.msg ├── cmerrors_ctl.c ├── cmi.h ├── cmidef.h ├── cmierrors.msg ├── cmierrors_ctl.c ├── cmmdef.h ├── code_address_type.h ├── code_gen.c ├── coerce.c ├── collseq.c ├── collseq.h ├── comline.h ├── common_startup_init.c ├── common_startup_init.h ├── comp_esc.h ├── comp_fini.c ├── comp_indr.c ├── comp_init.c ├── compile_pattern.c ├── compile_pattern.h ├── compiler.h ├── compiler_ch.c ├── compiler_startup.c ├── compswap.h ├── convbaseutil.mpt ├── copy.h ├── copy_stack_frame.c ├── copyright.txt ├── cre_jnl_file.c ├── cre_jnl_file_intrpt_rename.c ├── cre_private_code_copy.c ├── create_byte_xlate_table.c ├── create_dummy_gbldir.c ├── create_fatal_error_zshow_dmp.c ├── create_fatal_error_zshow_dmp.h ├── create_temporaries.c ├── create_utf8_xlate_table.c ├── crit_wake.h ├── cryptdef.h ├── ctrlc_handler_dummy.c ├── ctrlc_handler_dummy.h ├── cvtparm.c ├── cvtparm.h ├── cvtprot.h ├── cws_insert.h ├── d.mpt ├── date.mpt ├── db_auto_upgrade.c ├── db_common_init.c ├── db_csh_get.c ├── db_csh_getn.c ├── db_csh_ini.c ├── db_csh_ref.c ├── db_header_conversion.c ├── db_header_conversion.h ├── dbfilop.h ├── defer_error_set.c ├── deferred_events.c ├── deferred_events.h ├── deferred_events_queue.c ├── deferred_events_queue.h ├── deferred_signal_handler.c ├── deferred_signal_set.c ├── deferred_signal_set.h ├── deviceparameters.c ├── deviceparameters.h ├── devoptions.c ├── devoptionstab.h ├── dfa_calc.c ├── dh.mpt ├── dlopen_handle_array.h ├── dlopen_handle_array_add.c ├── dlopen_handle_array_close.c ├── dm_read.h ├── dm_setup.c ├── dm_setup.h ├── do.mpt ├── do_indir_do.c ├── do_indir_do.h ├── do_patalt.c ├── do_patfixed.c ├── do_patsplit.c ├── do_pattern.c ├── do_xform.h ├── dogetaddrinfo.c ├── dogetaddrinfo.h ├── dollar_quit.c ├── dollar_quit.h ├── dollar_system_init.c ├── dollar_system_init.h ├── dollar_zlevel.c ├── dollar_zlevel.h ├── dollarx.c ├── dollarx.h ├── dpgbldir.c ├── dpgbldir.h ├── dse.h ├── dse.hlp ├── dse_adrec.c ├── dse_adstar.c ├── dse_all.c ├── dse_b_dmp.c ├── dse_cache.c ├── dse_chng_bhead.c ├── dse_chng_fhead.c ├── dse_chng_rhead.c ├── dse_crit.c ├── dse_data.c ├── dse_dmp.c ├── dse_dmp_fhead.c ├── dse_eval.c ├── dse_exhaus.c ├── dse_exit.c ├── dse_exit.h ├── dse_f_blk.c ├── dse_f_free.c ├── dse_f_key.c ├── dse_f_reg.c ├── dse_fdmp.c ├── dse_find_gvt.c ├── dse_find_roots.c ├── dse_flush.c ├── dse_getblk.c ├── dse_getki.c ├── dse_integ.c ├── dse_is_blk_free.c ├── dse_is_blk_in.c ├── dse_ksrch.c ├── dse_lm_blk_free.c ├── dse_m_rest.c ├── dse_maps.c ├── dse_order.c ├── dse_over.c ├── dse_page.c ├── dse_puttime.h ├── dse_r_dmp.c ├── dse_range.c ├── dse_rest.c ├── dse_rmrec.c ├── dse_rmsb.c ├── dse_save.c ├── dse_shift.c ├── dse_wcreinit.c ├── dsefind.h ├── dump_lockhist.c ├── dump_record.c ├── dumpfhead.mpt ├── dumptable.c ├── dumptable.h ├── eb_muldiv.c ├── eb_muldiv.h ├── ebc_xlat.c ├── ebc_xlat.h ├── ecode_add.c ├── ecode_get.c ├── ecode_init.c ├── ecode_set.c ├── eintr_handling_check.c ├── eintr_wrappers.h ├── emit_code.c ├── emit_code.h ├── entryref.c ├── err_check.c ├── error.h ├── error_trap.h ├── eval_expr.c ├── ex_arithlit_compute.c ├── ex_arithlit_compute_ch.c ├── ex_arithlit_optimize.c ├── ex_tail.c ├── exfun_frame.c ├── exfunc.c ├── exp.mpt ├── expr.c ├── expratom.c ├── expratom_coerce_mval.c ├── expritem.c ├── ext2jnl.c ├── extern_func.c ├── f_ascii.c ├── f_data.c ├── f_extract.c ├── f_find.c ├── f_fnumber.c ├── f_fnzbitfind.c ├── f_fnzbitget.c ├── f_fnzbitset.c ├── f_fnzbitstr.c ├── f_get.c ├── f_get1.c ├── f_incr.c ├── f_justify.c ├── f_length.c ├── f_mint.c ├── f_mint_mstr.c ├── f_mstr.c ├── f_name.c ├── f_next.c ├── f_one_mval.c ├── f_order.c ├── f_order1.c ├── f_qlength.c ├── f_qsubscript.c ├── f_query.c ├── f_query1.c ├── f_reverse.c ├── f_reversequery1.c ├── f_select.c ├── f_stack.c ├── f_text.c ├── f_translate.c ├── f_two_mstrs.c ├── f_two_mval.c ├── f_view.c ├── f_zahandle.c ├── f_zatransform.c ├── f_zcall.c ├── f_zchar.c ├── f_zcollate.c ├── f_zconvert.c ├── f_zdate.c ├── f_zgetsyi.c ├── f_zjobexam.c ├── f_zparse.c ├── f_zpeek.c ├── f_zprevious.c ├── f_zqgblmod.c ├── f_zsearch.c ├── f_zsigproc.c ├── f_zsocket.c ├── f_ztrigger.c ├── f_ztrnlnm.c ├── f_zwidth.c ├── f_zwrite.c ├── f_zycompile.c ├── f_zyhash.c ├── f_zyissqlnull.c ├── f_zysuffix.c ├── fao_parm.h ├── fgn_glopref.c ├── fgncal.h ├── fgncal_unwind.c ├── file_head_read.h ├── file_head_write.h ├── fileinfo.h ├── find_line_addr.c ├── find_line_start.c ├── find_mvstent.c ├── find_mvstent.h ├── find_rtn_hdr.c ├── five_2_ascii.c ├── five_2_ascii.h ├── five_bit.c ├── five_bit.h ├── fix_pages.h ├── fix_xfer_entry.h ├── fl.mpt ├── flt_mod.c ├── flt_mod.h ├── flush_jmp.c ├── flush_jmp.h ├── flush_pio.c ├── fnname.h ├── fnorder.h ├── fnpc.h ├── fnpc_stats.c ├── fntext_ch.c ├── format2disp.c ├── format2zwr.c ├── format_key_lv_val.c ├── format_key_mvals.c ├── format_lvname.c ├── format_targ_key.c ├── format_targ_key.h ├── freecnt.mpt ├── fullbool.h ├── funsvn.h ├── g.mpt ├── gbldef.mpt ├── gbldefs.c ├── gc.mpt ├── gce.mpt ├── gd.mpt ├── gde.hlp ├── gde.m ├── gdeadd.m ├── gdechang.m ├── gdedelet.m ├── gdeerrors.msg ├── gdeerrors_ctl.c ├── gdeexit.m ├── gdehelp.m ├── gdeinit.m ├── gdelocks.m ├── gdelog.m ├── gdemap.m ├── gdemsgin.m ├── gdeparse.m ├── gdequit.m ├── gderenam.m ├── gdescan.m ├── gdesetgd.m ├── gdeshow.m ├── gdespawn.m ├── gdetempl.m ├── gds_blk_upgrade.c ├── gds_blk_upgrade.h ├── gds_blk_upgrade_inline.h ├── gds_map_moved.c ├── gds_map_moved.h ├── gds_rundown.h ├── gdsbgtr.h ├── gdsblk.h ├── gdsblkops.h ├── gdsbml.h ├── gdsbt.h ├── gdscc.h ├── gdsdbver.h ├── gdsdbver_sp.h ├── gdsfhead.h ├── gdsfilext.h ├── gdskill.h ├── gdsroot.h ├── ged.mpt ├── gendash.m ├── genout.m ├── get_cmd_qlf.c ├── get_comm_info.c ├── get_comm_info.h ├── get_command_line.h ├── get_dir_root.c ├── get_dlr_device.c ├── get_dlr_key.c ├── get_dlr_zkey.c ├── get_dollar_stack_info.c ├── get_frame_creation_info.c ├── get_frame_place_mcode.c ├── get_fs_block_size.c ├── get_fs_block_size.h ├── get_lmap.c ├── get_log_name.c ├── get_mladdr.c ├── get_mmseg.c ├── get_mumps_code.h ├── get_mvaddr.c ├── get_next_gdr.c ├── get_page_size.h ├── get_reference.c ├── get_reference.h ├── get_ret_targ.c ├── get_ret_targ.h ├── get_root.h ├── get_symb_line.c ├── getfree_blk_inline.h ├── getfree_inline.h ├── getjobname.c ├── getjobname.h ├── getjobnum.h ├── getprime.c ├── getstorage.h ├── getzdir.c ├── getzdir.h ├── getzmode.h ├── getzposition.c ├── getzposition.h ├── getzprocess.h ├── gi.mpt ├── global_map.c ├── global_map.h ├── glvn.c ├── glvn_pool.c ├── glvn_pool.h ├── go.mpt ├── goerrorframe.c ├── goframes.c ├── golevel.h ├── gparam_list.h ├── gsel.mpt ├── gtm_assert.c ├── gtm_assert2.c ├── gtm_bintim.h ├── gtm_byteswap_64.c ├── gtm_c_stack_trace.h ├── gtm_caseconv.h ├── gtm_common_defs.h ├── gtm_connect.c ├── gtm_ctype.h ├── gtm_dirent.h ├── gtm_env_init.c ├── gtm_env_init.h ├── gtm_env_xlate_init.c ├── gtm_env_xlate_init.h ├── gtm_facility.h ├── gtm_fcntl.h ├── gtm_fetch.c ├── gtm_ffs.c ├── gtm_ffs.h ├── gtm_file_remove.h ├── gtm_file_stat.h ├── gtm_iconv.h ├── gtm_inet.h ├── gtm_ipv6.h ├── gtm_libaio.h ├── gtm_limits.h ├── gtm_malloc.c ├── gtm_malloc.h ├── gtm_malloc_dbg.c ├── gtm_malloc_src.h ├── gtm_maxstr.c ├── gtm_maxstr.h ├── gtm_memcmp.c ├── gtm_memcpy_validate_and_execute.c ├── gtm_memcpy_validate_and_execute.h ├── gtm_netdb.h ├── gtm_newintrinsic.c ├── gtm_newintrinsic.h ├── gtm_putmsg_list.h ├── gtm_pwd.h ├── gtm_relqueopi.c ├── gtm_rename.h ├── gtm_repl.h ├── gtm_reservedDB.h ├── gtm_savetraps.c ├── gtm_savetraps.h ├── gtm_select.h ├── gtm_sizeof.h ├── gtm_socket.h ├── gtm_stat.h ├── gtm_stdlib.h ├── gtm_string.h ├── gtm_strings.h ├── gtm_text_alloc.h ├── gtm_threadgbl.h ├── gtm_threadgbl_defs.h ├── gtm_threadgbl_deftypes.c ├── gtm_threadgbl_init.c ├── gtm_threadgbl_init.h ├── gtm_time.h ├── gtm_un.h ├── gtm_unistd.h ├── gtm_wake.h ├── gtmctype.h ├── gtmdbglvl.h ├── gtmimagename.h ├── gtmimagetable.h ├── gtmmsg.h ├── gtmrecv_ch.c ├── gtmrecv_changelog.c ├── gtmrecv_checkhealth.c ├── gtmrecv_comm_init.c ├── gtmrecv_end_helpers.c ├── gtmrecv_exit.c ├── gtmrecv_get_opt.c ├── gtmrecv_helpers_init.c ├── gtmrecv_reap_helpers.c ├── gtmrecv_reinit_logseqno.c ├── gtmrecv_showbacklog.c ├── gtmrecv_start_helpers.c ├── gtmrecv_statslog.c ├── gtmrecv_upd_proc_init.c ├── gtmsource_ch.c ├── gtmsource_comm_init.c ├── gtmsource_ctl_init.c ├── gtmsource_exit.c ├── gtmsource_heartbeat.h ├── gtmsource_poll_actions.c ├── gtmsource_reinit_logseqno.c ├── gv_bind_name.c ├── gv_bind_subsname.c ├── gv_init_reg.c ├── gv_match.c ├── gv_match.h ├── gv_rundown.c ├── gv_rundown.h ├── gv_select.c ├── gv_select.h ├── gv_srch_gblname.c ├── gv_srch_map.c ├── gv_trigger_common.h ├── gv_xform_key.c ├── gv_xform_key.h ├── gvcmx.h ├── gvcmy_close.h ├── gvcmy_rundown.h ├── gvcst_blk_build.c ├── gvcst_blk_build.h ├── gvcst_blk_search.c ├── gvcst_bmp_mark_free.c ├── gvcst_bmp_mark_free.h ├── gvcst_data.c ├── gvcst_dataget.c ├── gvcst_delete_blk.c ├── gvcst_delete_blk.h ├── gvcst_expand_any_key.c ├── gvcst_expand_free_subtree.c ├── gvcst_expand_free_subtree.h ├── gvcst_expand_key.c ├── gvcst_expand_key.h ├── gvcst_gblmod.c ├── gvcst_get.c ├── gvcst_incr.c ├── gvcst_init.c ├── gvcst_jrt_null.c ├── gvcst_jrt_null.h ├── gvcst_kill.c ├── gvcst_kill_blk.c ├── gvcst_kill_blk.h ├── gvcst_kill_sort.c ├── gvcst_kill_sort.h ├── gvcst_lbm_check.c ├── gvcst_lbm_check.h ├── gvcst_lftsib.c ├── gvcst_map_build.c ├── gvcst_map_build.h ├── gvcst_order.c ├── gvcst_protos.h ├── gvcst_put.c ├── gvcst_query.c ├── gvcst_queryget.c ├── gvcst_reservedDB_funcs.c ├── gvcst_reversequery.c ├── gvcst_root_search.c ├── gvcst_rtsib.c ├── gvcst_search.c ├── gvcst_tp_init.c ├── gvcst_zprevious.c ├── gvincr_compute_post_incr.c ├── gvincr_recompute_upd_array.c ├── gvinit.c ├── gvn.c ├── gvn2gds.c ├── gvn2gds.h ├── gvname2naked_optimize.c ├── gvname_env_restore.c ├── gvname_env_save.c ├── gvname_info.h ├── gvnh_spanreg.h ├── gvnh_spanreg_init.c ├── gvnh_spanreg_ismapped.c ├── gvnh_spanreg_subs_gvt_init.c ├── gvstats_rec.c ├── gvstats_rec.h ├── gvstrsub.h ├── gvsub2str.c ├── gvsub2str.h ├── gvt_hashtab.c ├── gvt_hashtab.h ├── gvt_inline.h ├── gvzwr_arg.c ├── gvzwr_fini.c ├── gvzwr_init.c ├── gvzwr_out.c ├── gvzwr_var.c ├── gvzwrite_ch.c ├── gvzwrite_clnup.c ├── gvzwrite_clnup.h ├── h.mpt ├── hashtab.h ├── hashtab_addr.c ├── hashtab_addr.h ├── hashtab_implementation.h ├── hashtab_int4.c ├── hashtab_int4.h ├── hashtab_int8.c ├── hashtab_int8.h ├── hashtab_mname.c ├── hashtab_mname.h ├── hashtab_objcode.c ├── hashtab_objcode.h ├── hashtab_rehash_ch.c ├── hashtab_str.c ├── hashtab_str.h ├── have_crit.c ├── have_crit.h ├── hd.mpt ├── ho.mpt ├── i2asc.c ├── i2hex.c ├── i2hex_blkfill.c ├── i2hex_nofill.c ├── ind_cg_var.c ├── ind_code.c ├── indir.h ├── indir_enum.h ├── indir_lits.c ├── indirection.c ├── ins_errtriple.c ├── ins_triple.c ├── insert_region.c ├── inst_flush.h ├── int_label.c ├── int_namelook.c ├── int_namelook.h ├── io.h ├── io_dev_dispatch.h ├── io_init.c ├── io_init_ch.c ├── io_params.h ├── io_rundown.c ├── ionl_close.c ├── ionl_dummy.c ├── ionl_flush.c ├── ionl_open.c ├── ionl_rdone.c ├── ionl_read.c ├── ionl_readfl.c ├── ionl_use.c ├── ionl_write.c ├── ionl_wteol.c ├── ionl_wtff.c ├── ionl_wtone.c ├── iop.h ├── iop_parms_size.c ├── iorm_wtff.c ├── iorm_wtone.c ├── iormdefsp.h ├── iosocket_bind.c ├── iosocket_close.c ├── iosocket_connect.c ├── iosocket_create.c ├── iosocket_delimiter.c ├── iosocket_destroy.c ├── iosocket_flush.c ├── iosocket_handle.c ├── iosocket_iocontrol.c ├── iosocket_listen.c ├── iosocket_open.c ├── iosocket_poolinit.c ├── iosocket_rdone.c ├── iosocket_read.c ├── iosocket_readfl.c ├── iosocket_snr.c ├── iosocket_sockopt.c ├── iosocket_switch.c ├── iosocket_tcp_keepalive.c ├── iosocket_use.c ├── iosocket_wait.c ├── iosocket_write.c ├── iosocket_wteol.c ├── iosocket_wtff.c ├── iosocket_wtone.c ├── iosocketdef.h ├── iotimer.h ├── iott_dummy.c ├── iott_escape.c ├── iott_setterm.h ├── iott_wteol.c ├── iott_wtff.c ├── iott_wtone.c ├── ious_close.c ├── ious_dummy.c ├── ious_flush.c ├── ious_use.c ├── ious_wteol.c ├── ious_wtff.c ├── iousdef.h ├── is_canonic_name.c ├── is_canonic_name.h ├── is_equ.c ├── is_equ.h ├── is_file_identical.h ├── is_gdid.h ├── is_ident.c ├── is_proc_alive.h ├── jfh_from_jnl_info.c ├── jmp_opto.c ├── jmp_opto.h ├── jnl.h ├── jnl2ext.c ├── jnl_ensure_open.c ├── jnl_file_close.c ├── jnl_file_lost.c ├── jnl_file_open_common.c ├── jnl_file_open_switch.c ├── jnl_flush.c ├── jnl_format.c ├── jnl_format_ztworm_plus_logical.c ├── jnl_format_ztworm_remove_if_needed.c ├── jnl_get_checksum.c ├── jnl_get_checksum.h ├── jnl_phase2_cleanup.c ├── jnl_phase2_salvage.c ├── jnl_pool_write.c ├── jnl_rec_table.h ├── jnl_send_oper.c ├── jnl_set_cur_prior.c ├── jnl_typedef.h ├── jnl_wait.c ├── jnl_write.c ├── jnl_write.h ├── jnl_write_aimg_rec.c ├── jnl_write_aimg_rec.h ├── jnl_write_align_rec.c ├── jnl_write_attempt.c ├── jnl_write_eof_rec.c ├── jnl_write_epoch_rec.c ├── jnl_write_extend_if_needed.c ├── jnl_write_inctn_rec.c ├── jnl_write_logical.c ├── jnl_write_multi_align_rec.c ├── jnl_write_pblk.c ├── jnl_write_pblk.h ├── jnl_write_pfin.c ├── jnl_write_phase2.c ├── jnl_write_pini.c ├── jnl_write_reserve.c ├── jnl_write_trunc_rec.c ├── jnl_write_ztp_logical.c ├── jnlpool_hasnt_overflowed.c ├── job.h ├── job_addr.c ├── job_addr.h ├── jobexam_process.c ├── jobexam_process.h ├── jobinterrupt_event.c ├── jobinterrupt_init.c ├── jobinterrupt_process.h ├── jobinterrupt_process_cleanup.c ├── jobinterrupt_process_cleanup.h ├── jobintrpt_ztime_process.c ├── jobparameters.c ├── jobparams.h ├── jobparamstrs.h ├── jswrite.mpt ├── la_encrypt.c ├── la_encrypt.h ├── lb_init.c ├── lb_init.h ├── lcase.mpt ├── lckclr.c ├── lckclr.h ├── lcl_arg1_is_desc_of_arg2.c ├── lclcol.mpt ├── libydberrors.h ├── libydberrors2.h ├── line.c ├── linetail.c ├── linktrc.h ├── list_file.h ├── lke.h ├── lke.hlp ├── lke_clean.c ├── lke_clear.c ├── lke_clearlock.c ├── lke_clearlock.h ├── lke_cleartree.c ├── lke_cleartree.h ├── lke_exit.c ├── lke_getcli.c ├── lke_getcli.h ├── lke_getki.c ├── lke_growhash.c ├── lke_rehash.c ├── lke_show.c ├── lke_showlock.c ├── lke_showtree.c ├── lkglvn.c ├── loadop.m ├── loadvx.m ├── localvarmonitor.h ├── lock_str_to_buff.c ├── lock_str_to_buff.h ├── lockconst.h ├── locklits.h ├── longset.h ├── lookup_variable_htent.c ├── lookup_variable_htent.h ├── lower_to_upper.c ├── lref.c ├── lv_getslot.c ├── lv_kill.c ├── lv_killarray.c ├── lv_newblock.c ├── lv_newname.c ├── lv_tree.c ├── lv_tree.h ├── lv_val.h ├── lv_var_clone.c ├── lvmon_compare_value_slots.c ├── lvmon_pull_values.c ├── lvn.c ├── lvzwr_arg.c ├── lvzwr_fini.c ├── lvzwr_init.c ├── lvzwr_key.c ├── lvzwr_out.c ├── lvzwr_var.c ├── m_break.c ├── m_close.c ├── m_do.c ├── m_else.c ├── m_for.c ├── m_for_ch.c ├── m_goto.c ├── m_goto_postcond.c ├── m_halt.c ├── m_hang.c ├── m_hcmd.c ├── m_if.c ├── m_job.c ├── m_kill.c ├── m_lock.c ├── m_merge.c ├── m_new.c ├── m_open.c ├── m_quit.c ├── m_read.c ├── m_set.c ├── m_tcommit.c ├── m_trestart.c ├── m_trollback.c ├── m_tstart.c ├── m_use.c ├── m_view.c ├── m_write.c ├── m_xecute.c ├── m_zallocate.c ├── m_zattach.c ├── m_zbreak.c ├── m_zcompile.c ├── m_zcontinue.c ├── m_zdeallocate.c ├── m_zedit.c ├── m_zgoto.c ├── m_zhalt.c ├── m_zhelp.c ├── m_zinvcmd.c ├── m_zlink.c ├── m_zmessage.c ├── m_zprint.c ├── m_zshow.c ├── m_zstep.c ├── m_zsystem.c ├── m_ztcommit.c ├── m_ztstart.c ├── m_zwithdraw.c ├── m_zwrite.c ├── main_pragma.h ├── make_commarg.c ├── make_gvsubsc.c ├── make_ilit.c ├── maketriple.c ├── matchc.c ├── matchc.h ├── mcalloc.c ├── mcfree.c ├── md5hash.c ├── md5hash.h ├── mdb_condition_handler.c ├── mdef.h ├── mdq.h ├── memcoherency.h ├── memvcmp.c ├── merge_def.h ├── merge_desc_check.c ├── merrors.msg ├── merrors_ansi.h ├── merrors_ctl.c ├── min_max.h ├── minimal_gbldefs.c ├── mint2mval.c ├── mint2mval.h ├── mlabel2xtern.c ├── mlabel2xtern.h ├── mlk_bckout.c ├── mlk_bckout.h ├── mlk_check_own.c ├── mlk_check_own.h ├── mlk_garbage_collect.c ├── mlk_garbage_collect.h ├── mlk_gbldef.c ├── mlk_lock.c ├── mlk_lock.h ├── mlk_nocrit_unlock.c ├── mlk_ops.h ├── mlk_prcblk_add.c ├── mlk_prcblk_add.h ├── mlk_prcblk_delete.c ├── mlk_prcblk_delete.h ├── mlk_pvtblk_create.c ├── mlk_pvtblk_create.h ├── mlk_pvtblk_delete.c ├── mlk_pvtblk_delete.h ├── mlk_pvtblk_equ.c ├── mlk_pvtblk_equ.h ├── mlk_pvtblk_insert.c ├── mlk_pvtblk_insert.h ├── mlk_region_lookup.c ├── mlk_region_lookup.h ├── mlk_rehash.c ├── mlk_rehash.h ├── mlk_shr_init.c ├── mlk_shr_init.h ├── mlk_shrblk_create.c ├── mlk_shrblk_create.h ├── mlk_shrblk_delete_if_empty.c ├── mlk_shrblk_delete_if_empty.h ├── mlk_shrblk_find.c ├── mlk_shrblk_find.h ├── mlk_shrblk_sort.c ├── mlk_shrclean.c ├── mlk_shrclean.h ├── mlk_shrhash_add.h ├── mlk_shrhash_find_bucket.c ├── mlk_shrhash_find_bucket.h ├── mlk_shrhash_resize.c ├── mlk_shrhash_resize.h ├── mlk_shrsub_garbage_collect.c ├── mlk_shrsub_garbage_collect.h ├── mlk_tree_wake_children.c ├── mlk_tree_wake_children.h ├── mlk_unlock.c ├── mlk_unlock.h ├── mlk_unpend.c ├── mlk_unpend.h ├── mlk_wake_pending.c ├── mlk_wake_pending.h ├── mlkdef.h ├── mm_read.c ├── mm_read.h ├── mm_update.h ├── mmemory.h ├── mmseg.h ├── movtc.c ├── movtc.h ├── mpiece.mpt ├── mprof.h ├── mprof_funcs.c ├── mprof_stack.c ├── mprof_tree.c ├── mrout2xtern.h ├── msg.m ├── mstack_size_init.c ├── mstack_size_init.h ├── mtables.c ├── mtables.h ├── mu_clsce.c ├── mu_cre_file.h ├── mu_extr_gblout.c ├── mu_extr_getblk.c ├── mu_extr_ident.c ├── mu_freeze_ch.c ├── mu_getlst.h ├── mu_gv_cur_reg_init.c ├── mu_gv_cur_reg_init.h ├── mu_gv_stack_init.c ├── mu_gv_stack_init.h ├── mu_gvis.h ├── mu_int_blk.c ├── mu_int_err.c ├── mu_int_fhead.c ├── mu_int_init.c ├── mu_int_maps.c ├── mu_int_maps.h ├── mu_int_read.c ├── mu_int_reg.c ├── mu_int_reg_ch.c ├── mu_int_wait_rdonly.c ├── mu_int_wait_rdonly.h ├── mu_int_write.c ├── mu_interactive.c ├── mu_interactive.h ├── mu_outofband_setup.h ├── mu_put_gvdata.c ├── mu_put_gvn_fragment.c ├── mu_reduce_level.c ├── mu_reorg.c ├── mu_reorg.h ├── mu_reorg_upgrd_dwngrd.c ├── mu_reorg_upgrd_dwngrd.h ├── mu_signal_process.h ├── mu_split.c ├── mu_swap_blk.c ├── mu_updwn_ver_inline.h ├── mu_upgrade_bmm.c ├── mu_upgrade_bmm.h ├── mu_upgrd_dngrd_confirmed.c ├── mu_upgrd_dngrd_confirmed.h ├── mubclnup.c ├── mucblkini.h ├── mucregini.c ├── mucregini.h ├── muext_rec_table.h ├── muextr.h ├── mumps.hlp ├── mupfndfil.c ├── mupint.h ├── mupip.hlp ├── mupip_backup.c ├── mupip_backup.h ├── mupip_create.c ├── mupip_create.h ├── mupip_cvtgbl.h ├── mupip_cvtpgm.h ├── mupip_downgrade.c ├── mupip_downgrade.h ├── mupip_exit.h ├── mupip_extend.c ├── mupip_extend.h ├── mupip_freeze.c ├── mupip_freeze.h ├── mupip_help.h ├── mupip_integ.c ├── mupip_integ.h ├── mupip_intrpt.c ├── mupip_intrpt.h ├── mupip_io_dev_dispatch.h ├── mupip_load_ch.c ├── mupip_put_gvdata.h ├── mupip_put_gvn_fragment.h ├── mupip_quit.h ├── mupip_recover.c ├── mupip_recover.h ├── mupip_reorg.c ├── mupip_reorg.h ├── mupip_restore.h ├── mupip_rundown.h ├── mupip_set.c ├── mupip_set.h ├── mupip_set_jnl_ch.c ├── mupip_set_jnl_cleanup.c ├── mupip_set_jnlfile_aux.c ├── mupip_set_journal.c ├── mupip_set_journal_fname.c ├── mupip_set_journal_newstate.c ├── mupip_set_journal_parse.c ├── mupip_stop.c ├── mupip_stop.h ├── mupip_upgrade.c ├── mupip_upgrade.h ├── mupipbckup.h ├── muprec.h ├── mur_apply_pblk.c ├── mur_back_process.c ├── mur_block_count_correct.c ├── mur_blocks_free.c ├── mur_close_file_extfmt.c ├── mur_close_files.c ├── mur_db_files_from_jnllist.c ├── mur_db_files_from_jnllist.h ├── mur_do_wildcard.c ├── mur_forward.c ├── mur_forward_play_cur_jrec.c ├── mur_forward_play_multireg_tp.c ├── mur_gbldefs.c ├── mur_get_options.c ├── mur_get_pini.c ├── mur_init.c ├── mur_insert_prev.c ├── mur_jctl_from_next_gen.c ├── mur_jnl_ext.c ├── mur_jnl_ext.h ├── mur_merge_sort_extfmt.c ├── mur_multi_rehash.c ├── mur_open_files.c ├── mur_output_record.c ├── mur_output_show.c ├── mur_pini_addr_reset.c ├── mur_pini_state.c ├── mur_process_intrpt_recov.c ├── mur_process_seqno_table.c ├── mur_process_timequal.c ├── mur_process_token_table.c ├── mur_put_aimg_rec.c ├── mur_read_file.c ├── mur_read_file.h ├── mur_rem_jctls.c ├── mur_report_error.c ├── mur_select_rec.c ├── mur_sort_files.c ├── mur_token_lookup.c ├── mur_tp_resolve_time.c ├── mur_validate_checksum.c ├── mur_validate_checksum.h ├── mur_write_header_extfmt.c ├── mur_ztp_lookback.c ├── murest.h ├── mutex.h ├── mutex_deadlock_check.c ├── mutex_deadlock_check.h ├── mv_stent.h ├── mval2bool.c ├── mval2bool.h ├── mval2fao.c ├── mval2fao.h ├── mval2mint.c ├── mval2mint.h ├── mval2num.c ├── mval2num.h ├── mval2subsc.c ├── mval_lex.c ├── mval_nongraphic.c ├── mval_write.c ├── mvalconv.c ├── mvalconv.h ├── n2s.c ├── name_glvn.c ├── namelook.c ├── namelook.h ├── nametabtyp.h ├── new_stack_frame.c ├── newtriple.c ├── nil_iocontrol.c ├── nref.c ├── numcmp.c ├── numcmp.h ├── obj_file.h ├── obj_gen.h ├── objlabel.h ├── oc_tab.c ├── oc_tab_graphic.c ├── od.mpt ├── oh.mpt ├── one_job_param.c ├── op.h ├── op_add.c ├── op_bindparm.c ├── op_break.c ├── op_bxrelop_contain.c ├── op_bxrelop_equ.c ├── op_bxrelop_follow.c ├── op_bxrelop_gt.c ├── op_bxrelop_lt.c ├── op_bxrelop_ncontain.c ├── op_bxrelop_nequ.c ├── op_bxrelop_nfollow.c ├── op_bxrelop_ngt.c ├── op_bxrelop_nlt.c ├── op_bxrelop_npattern.c ├── op_bxrelop_nsortsafter.c ├── op_bxrelop_pattern.c ├── op_bxrelop_sortsafter.c ├── op_cat.c ├── op_close.c ├── op_clralsvars.c ├── op_commarg.c ├── op_contain_retbool.c ├── op_contain_retmval.c ├── op_cvtparm.c ├── op_decrlock.c ├── op_div.c ├── op_dmode.c ├── op_dt_false.c ├── op_dt_get.c ├── op_dt_store.c ├── op_dt_true.c ├── op_equ_retbool.c ├── op_equ_retmval.c ├── op_equnul_retbool.c ├── op_equnul_retmval.c ├── op_exfunret.c ├── op_exfunretals.c ├── op_exp.c ├── op_fnascii.c ├── op_fnchar.c ├── op_fndata.c ├── op_fnfind.c ├── op_fnfnumber.c ├── op_fnget1.c ├── op_fnget2.c ├── op_fngvget.c ├── op_fngvget1.c ├── op_fnincr.c ├── op_fnj2.c ├── op_fnj3.c ├── op_fnlength.c ├── op_fnlvname.c ├── op_fnlvnameo2.c ├── op_fnlvprvname.c ├── op_fnname.c ├── op_fnnext.c ├── op_fno2.c ├── op_fnorder.c ├── op_fnq2.c ├── op_fnqlength.c ├── op_fnqsubscript.c ├── op_fnquery.c ├── op_fnreverse.c ├── op_fnreversequery.c ├── op_fnstack1.c ├── op_fnstack2.c ├── op_fntext.c ├── op_fntranslate.c ├── op_fnview.c ├── op_fnzahandle.c ├── op_fnzatransform.c ├── op_fnzauditlog.c ├── op_fnzbitand.c ├── op_fnzbitcoun.c ├── op_fnzbitfind.c ├── op_fnzbitget.c ├── op_fnzbitlen.c ├── op_fnzbitnot.c ├── op_fnzbitor.c ├── op_fnzbitset.c ├── op_fnzbitstr.c ├── op_fnzbitxor.c ├── op_fnzcollate.c ├── op_fnzdata.c ├── op_fnzdate.c ├── op_fnzjobexam.c ├── op_fnzm.c ├── op_fnzp1.c ├── op_fnzpeek.h ├── op_fnzpiece.c ├── op_fnzpopulation.c ├── op_fnzprevious.c ├── op_fnzqgblmod.c ├── op_fnzsearch.h ├── op_fnzsigproc.c ├── op_fnzsocket.c ├── op_fnzsubstr.c ├── op_fnztrigger.c ├── op_fnzwidth.c ├── op_fnzwrite.c ├── op_fnzycompile.c ├── op_fnzyissqlnull.c ├── op_fnzysuffix.c ├── op_follow_retbool.c ├── op_follow_retmval.c ├── op_get_msf.c ├── op_getindx.c ├── op_glvnpop.c ├── op_glvnslot.c ├── op_gt_retbool.c ├── op_gt_retmval.c ├── op_gvdata.c ├── op_gvextnam.c ├── op_gvget.c ├── op_gvincr.c ├── op_gvkill.c ├── op_gvnaked.c ├── op_gvname.c ├── op_gvnext.c ├── op_gvo2.c ├── op_gvorder.c ├── op_gvput.c ├── op_gvq2.c ├── op_gvquery.c ├── op_gvqueryget.c ├── op_gvrectarg.c ├── op_gvreversequery.c ├── op_gvsavtarg.c ├── op_gvzwithdraw.c ├── op_gvzwrite.c ├── op_hang.c ├── op_hardret.c ├── op_idiv.c ├── op_igetdst.c ├── op_igetsrc.c ├── op_incrlock.c ├── op_inddevparms.c ├── op_indfnname.c ├── op_indfnname2.c ├── op_indfun.c ├── op_indget1.c ├── op_indget2.c ├── op_indglvn.c ├── op_indincr.c ├── op_indlvadr.c ├── op_indlvarg.c ├── op_indlvnamadr.c ├── op_indmerge.c ├── op_indmerge2.c ├── op_indname.c ├── op_indo2.c ├── op_indpat.c ├── op_indq2.c ├── op_indrzshow.c ├── op_indsavglvn.c ├── op_indsavlvn.c ├── op_indset.c ├── op_indtext.c ├── op_iocontrol.c ├── op_iretmval.c ├── op_kill.c ├── op_killalias.c ├── op_killaliasall.c ├── op_killall.c ├── op_labaddr.c ├── op_litc.c ├── op_lkinit.c ├── op_lkname.c ├── op_lock.c ├── op_lock2.c ├── op_lt_retbool.c ├── op_lt_retmval.c ├── op_lvpatwrite.c ├── op_lvzwithdraw.c ├── op_lvzwrite.c ├── op_m_srchindx.c ├── op_merge.c ├── op_merge.h ├── op_merge_arg.c ├── op_mul.c ├── op_ncontain_retbool.c ├── op_ncontain_retmval.c ├── op_nequ_retbool.c ├── op_nequ_retmval.c ├── op_nequnul_retbool.c ├── op_nequnul_retmval.c ├── op_newintrinsic.c ├── op_newvar.c ├── op_nfollow_retbool.c ├── op_nfollow_retmval.c ├── op_ngt_retbool.c ├── op_ngt_retmval.c ├── op_nlt_retbool.c ├── op_nlt_retmval.c ├── op_npattern_retbool.c ├── op_npattern_retmval.c ├── op_nsortsafter_retbool.c ├── op_nsortsafter_retmval.c ├── op_nullexp.c ├── op_oldvar.c ├── op_open.c ├── op_open_dummy.c ├── op_pattern_retbool.c ├── op_pattern_retmval.c ├── op_putindx.c ├── op_rdone.c ├── op_read.c ├── op_readfl.c ├── op_rfrshgvn.c ├── op_rfrshlvn.c ├── op_rhdaddr.c ├── op_rterror.c ├── op_savgvn.c ├── op_savlvn.c ├── op_setals2als.c ├── op_setalsct2alsct.c ├── op_setalsctin2als.c ├── op_setalsin2alsct.c ├── op_setfnretin2als.c ├── op_setfnretin2alsct.c ├── op_setzbrk.c ├── op_setzextract.c ├── op_setzp1.c ├── op_setzpiece.c ├── op_shareslot.c ├── op_sortsafter_retbool.c ├── op_sortsafter_retmval.c ├── op_srchindx.c ├── op_stoglvn.c ├── op_stolitc.c ├── op_svget.c ├── op_svput.c ├── op_tcommit.c ├── op_tcommit.h ├── op_trestart.c ├── op_trollback.c ├── op_tstart.c ├── op_tstart.h ├── op_unlock.c ├── op_unwind.c ├── op_use.c ├── op_view.c ├── op_write.c ├── op_wteol.c ├── op_wtff.c ├── op_wtone.c ├── op_wttab.c ├── op_xkill.c ├── op_xnew.c ├── op_zallocate.c ├── op_zbreak.c ├── op_zcompile.c ├── op_zcont.c ├── op_zdealloc2.c ├── op_zdeallocate.c ├── op_zg1.c ├── op_zgoto.c ├── op_zhalt.c ├── op_zprevious.c ├── op_zprint.c ├── op_zshow.c ├── op_zst_break.c ├── op_zst_over.c ├── op_zst_over_retarg_helper.c ├── op_zstep.c ├── op_zstepret.c ├── op_zstepretarg_helper.c ├── op_zsystem.c ├── op_ztcommit.c ├── op_ztstart.c ├── op_zwritesvn.c ├── opcode.h ├── opcode_def.h ├── outofband.h ├── outofband_action.c ├── outofband_clear.c ├── parm_pool.c ├── parm_pool.h ├── parse_trctbl_groups.c ├── parse_trctbl_groups.h ├── parse_until_rparen_or_space.c ├── pat_compress.c ├── pat_unwind.c ├── patcode.h ├── patcode.mpt ├── patmaskseq.c ├── patstr.c ├── pattab.c ├── performcaslatchcheck.c ├── performcaslatchcheck.h ├── preemptive_db_clnup.c ├── preemptive_db_clnup.h ├── prepare_unique_name.c ├── print_exit_stats.c ├── print_exit_stats.h ├── print_target.c ├── print_target.h ├── private_code_copy.h ├── process_deferred_stale.c ├── process_deferred_stale.h ├── process_gvt_pending_list.c ├── process_gvt_pending_list.h ├── promodemo.c ├── promodemo.h ├── push_lvval.c ├── push_lvval.h ├── push_mval.c ├── push_parm_src.h ├── push_stck.c ├── push_tval.c ├── push_tval.h ├── put_cdlt.c ├── put_ilit.c ├── put_indr.c ├── put_lit.c ├── put_mfun.c ├── put_mlab.c ├── put_mmseg.c ├── put_mnxl.c ├── put_mvar.c ├── put_ocnt.c ├── put_str.c ├── put_tjmp.c ├── put_tnxt.c ├── put_tref.c ├── put_tsiz.c ├── randstr.mpt ├── rc_cpt_ops.h ├── rc_oflow.h ├── rce.mpt ├── rd.mpt ├── read_db_files_from_gld.c ├── read_db_files_from_gld.h ├── real_len.c ├── real_len.h ├── region_freeze.c ├── region_freeze_multiproc.h ├── region_init.c ├── region_init_ch.c ├── reinit_compilation_externs.c ├── reinit_compilation_externs.h ├── rel_mmseg.c ├── rel_quant.h ├── release_private_code_copy.c ├── relqop.h ├── relqueop.c ├── relqueopi.c ├── relqueopi.h ├── rename_file_if_exists.c ├── reorg_funcs.c ├── repl_comm.c ├── repl_comm.h ├── repl_ctl.h ├── repl_dbg.h ├── repl_dbg_disable.h ├── repl_dbg_enable.h ├── repl_errno.c ├── repl_errno.h ├── repl_filter.c ├── repl_filter.h ├── repl_log.h ├── repl_phase2_cleanup.c ├── repl_phase2_salvage.c ├── repl_shutdcode.h ├── repl_sort_tr_buff.c ├── repl_sort_tr_buff.h ├── repl_tr_good.c ├── repl_tr_good.h ├── replgbl.h ├── replic_gbldefs.c ├── replication_ch.c ├── resolve_blocks.c ├── resolve_blocks.h ├── resolve_lab.c ├── resolve_lab.h ├── resolve_optimize.c ├── resolve_ref.c ├── restrict.c ├── restrict.h ├── ri.mpt ├── ro.mpt ├── rse.mpt ├── rsel.mpt ├── rtn_src_chksum.c ├── rtn_src_chksum.h ├── rtnlaboff2entryref.c ├── rwformat.c ├── rwformat.h ├── s2n.c ├── s2pool.c ├── s2pool_align.c ├── s2pool_concat.c ├── sec_shr_blk_build.c ├── sec_shr_blk_build.h ├── sec_shr_map_build.c ├── sec_shr_map_build.h ├── secshr_blk_full_build.c ├── secshr_db_clnup.c ├── secshr_db_clnup.h ├── secshr_finish_CMT08_to_CMT14.c ├── secshr_finish_CMT18.c ├── secshr_finish_CMT18_to_CMT19.c ├── secshr_rel_crit.c ├── secshr_send_DBCLNUPINFO_msg.c ├── send_msg.h ├── set_gbuff_limit.c ├── set_gbuff_limit.h ├── set_jnl_info.c ├── set_num_additional_processors.h ├── set_testpoint.c ├── setcurtchain.c ├── setup_error.c ├── setup_error.h ├── setzdir.c ├── setzdir.h ├── seven_2_ascii.c ├── seven_2_ascii.h ├── sgnl.h ├── sgnl_gvnulsubsc.c ├── sgnl_gvundef.c ├── sgtm_putmsg.h ├── shmpool.c ├── shmpool.h ├── show_source_line.c ├── show_source_line.h ├── shrink_trips.c ├── shuffq.c ├── skan_offset.c ├── skan_offset.h ├── skan_rnum.c ├── skan_rnum.h ├── skpc.c ├── sleep_cnt.h ├── sockint_stats.c ├── sockint_stats.h ├── sort.h ├── sorts_after.c ├── sorts_after.h ├── sorts_after_lcl_colseq.c ├── source_file.h ├── spec_type.h ├── sqroot.mpt ├── srcline.h ├── stack_frame.h ├── start_fetches.h ├── start_for_fetches.c ├── startup.h ├── std_dev_outbndset.h ├── stp_expand_array.c ├── stp_gcol.c ├── stp_gcol_ch.c ├── stp_gcol_nosort.c ├── stp_gcol_spsize.c ├── stp_gcol_src.h ├── stp_init.c ├── stp_move.c ├── stp_parms.h ├── stpg_sort.c ├── stpg_sort.h ├── str2gvargs.c ├── str2gvargs.h ├── str2gvkey.h ├── str2gvkey_gvfunc.c ├── str2gvkey_nogvfunc.c ├── str_to_title.c ├── stringpool.h ├── strpiecediff.c ├── strpiecediff.h ├── stx_error.c ├── sub2stbl.c ├── subscript.h ├── svnames.h ├── symb_line.c ├── symbinit.c ├── t.mpt ├── t_abort.c ├── t_abort.h ├── t_abort_cleanup.c ├── t_begin.c ├── t_begin.h ├── t_begin_crit.c ├── t_begin_crit.h ├── t_busy2free.c ├── t_busy2free.h ├── t_ch.c ├── t_commit_cleanup.c ├── t_commit_cleanup.h ├── t_create.c ├── t_create.h ├── t_end.c ├── t_end.h ├── t_end_sysops.c ├── t_qread.c ├── t_qread.h ├── t_retry.c ├── t_retry.h ├── t_write.c ├── t_write.h ├── t_write_map.c ├── t_write_map.h ├── t_write_root.c ├── t_write_root.h ├── tab_bg_trc_rec.h ├── tab_db_csh_acct_rec.h ├── tab_gvstats_rec.h ├── tab_jpl_trc_rec.h ├── targ_alloc.c ├── targ_alloc.h ├── tcp_open.c ├── term_setup.h ├── terminate_ch.c ├── testpt.h ├── ti.mpt ├── time_calc.c ├── timeout2msec.c ├── timers.h ├── tnxtarg.c ├── to.mpt ├── toktyp.h ├── tp.h ├── tp_change_reg.c ├── tp_change_reg.h ├── tp_clean_up.c ├── tp_cw_list.c ├── tp_frame.h ├── tp_get_cw.c ├── tp_hist.c ├── tp_incr_clean_up.c ├── tp_incr_commit.c ├── tp_incr_commit.h ├── tp_restart.c ├── tp_restart.h ├── tp_set_sgm.c ├── tp_set_sgm.h ├── tp_tend.c ├── tp_timeout.c ├── tp_timeout.h ├── tp_timeout_dummy.c ├── tp_unwind.c ├── tp_unwind.h ├── tpdefs.c ├── trace_table.h ├── trace_table_types.h ├── trans_code.c ├── trans_code_cleanup.c ├── trans_code_cleanup.h ├── trans_log_name.h ├── trap_env_init.c ├── trap_env_init.h ├── tref_gbldefs.c ├── trim.mpt ├── tripinit.c ├── try_event_pop.h ├── tttgen.m ├── tttscan.m ├── ucase.mpt ├── unary_tail.c ├── underr.c ├── underr_overwrite.c ├── undx.c ├── undx.h ├── unuse_literal.c ├── unw_mv_ent.c ├── unw_prof_frame_dummy.c ├── unw_prof_frame_dummy.h ├── unw_retarg.c ├── unw_retarg.h ├── unwind_nocounts.c ├── unwind_nocounts.h ├── upd_open_files.h ├── updhelper_end.c ├── updhelper_init.c ├── updhelper_reader.c ├── updhelper_writer.c ├── updproc.c ├── updproc.h ├── updproc_end.c ├── updproc_get_gblname.c ├── updproc_get_gblname.h ├── updproc_init.c ├── updproc_open_files.c ├── upper_to_lower.c ├── urx.h ├── urx_add.c ├── urx_addlab.c ├── urx_addrtn.c ├── urx_free.c ├── urx_getlab.c ├── urx_getrtn.c ├── urx_putlab.c ├── urx_putrtn.c ├── urx_resolve.c ├── urxsp.h ├── util.h ├── util_base_ch.c ├── util_ch.c ├── util_format.h ├── util_spawn.h ├── v010_jnl.h ├── v12_jnl_rec_table.h ├── v15_gdsbt.h ├── v15_gdsfhead.h ├── v15_gdsroot.h ├── v15_tab_bg_trc_rec_fixed.h ├── v15_tab_bg_trc_rec_variable.h ├── v15_tab_db_csh_acct_rec.h ├── v6_gdsfhead.h ├── val_iscan.c ├── valid_labname.c ├── valid_mname.c ├── valid_mname.h ├── verify_db_format_change_request.c ├── verify_db_format_change_request.h ├── verify_queue.c ├── view.h ├── view_arg_convert.c ├── view_jnlfile.c ├── view_routines.c ├── viewkeys.c ├── viewtab.h ├── vxi.h ├── vxt.h ├── wake.c ├── wake.h ├── wake_alarm.c ├── wake_alarm.h ├── walktree.c ├── wbox_test_init.c ├── wbox_test_init.h ├── wcs_backoff.c ├── wcs_backoff.h ├── wcs_flu.h ├── wcs_get_space.h ├── wcs_mm_recover.h ├── wcs_phase2_commit_wait.c ├── wcs_phase2_commit_wait.h ├── wcs_read_in_progress_wait.c ├── wcs_read_in_progress_wait.h ├── wcs_recover.c ├── wcs_recover.h ├── wcs_sleep.c ├── wcs_sleep.h ├── wcs_timer_start.h ├── wcs_verify.c ├── wrtcatopt.c ├── xcmd.mpt ├── xfer.h ├── xfer_enum.h ├── xfer_name.c ├── xfer_table.c ├── ydb_dmp_tracetbl.c ├── ydb_getenv.c ├── ydb_getenv.h ├── ydb_logical_truth_value.c ├── ydb_logical_truth_value.h ├── ydb_logicals.h ├── ydb_logicals_tab.h ├── ydb_shebang.c ├── ydb_shebang.h ├── ydb_sig_lookup.c ├── ydb_sig_lookup.h ├── ydb_sig_lookup_table.h ├── ydb_trans_log_name.c ├── ydb_trans_log_name.h ├── ydb_trans_numeric.c ├── ydb_trans_numeric.h ├── ydbcmerrors.h ├── ydbcmierrors.h ├── ydberrors.h ├── ydberrors.msg ├── ydberrors_ansi.h ├── ydberrors_ctl.c ├── ydbgdeerrors.h ├── ydbmerrors.h ├── zbreak.h ├── zco_init.c ├── zco_init.h ├── zdate_form_init.c ├── zdate_form_init.h ├── zlcompile.c ├── zlput_rname.c ├── zmvalid.mpt ├── zr_add_zbreak.c ├── zr_find.c ├── zr_init.c ├── zr_remove_zbreak.c ├── zr_remove_zbrks.c ├── zr_unlink_rtn.c ├── zr_unlink_rtn.h ├── zro_init.c ├── zroutines.h ├── zshow.h ├── zshow_ch.c ├── zshow_format_lock.c ├── zshow_gvstats.c ├── zshow_locks.c ├── zshow_output.c ├── zshow_params.h ├── zshow_stack.c ├── zshow_svn.c ├── zshow_zbreaks.c ├── zshow_zwrite.c ├── zshowvtolcl.mpt ├── zsocket.h ├── zsockettab.h ├── zstep.h ├── ztrap_save_ctxt.c ├── ztrap_save_ctxt.h ├── zwr2format.c ├── zwr_follow.c ├── zwr_follow.h ├── zwrite.h ├── zyerror_init.c └── zyerror_init.h ├── sr_port_cm ├── gtcm_action_pending.c ├── gtcm_action_pending.h ├── gtcm_add_region.c ├── gtcm_add_region.h ├── gtcm_bind_name.c ├── gtcm_bind_name.h ├── gtcm_err_compat.c ├── gtcm_err_compat.h ├── gtcm_exi_handler.c ├── gtcm_exi_handler.h ├── gtcm_find_proc.c ├── gtcm_find_proc.h ├── gtcm_find_reghead.c ├── gtcm_find_reghead.h ├── gtcm_find_region.c ├── gtcm_find_region.h ├── gtcm_init_ast.c ├── gtcm_init_ast.h ├── gtcm_int_unpack.c ├── gtcm_int_unpack.h ├── gtcm_is_query_queryget.c ├── gtcm_is_query_queryget.h ├── gtcm_jnl_switched.c ├── gtcm_jnl_switched.h ├── gtcm_link_accept.c ├── gtcm_link_accept.h ├── gtcm_neterr.c ├── gtcm_neterr.h ├── gtcm_protocol.c ├── gtcm_protocol.h ├── gtcm_read_ast.c ├── gtcm_read_ast.h ├── gtcm_release_name.c ├── gtcm_remove_from_action_queue.c ├── gtcm_remove_from_action_queue.h ├── gtcm_shutdown_ast.c ├── gtcm_shutdown_ast.h ├── gtcm_urgread_ast.h ├── gtcm_write_ast.c ├── gtcm_write_ast.h ├── gtcmd.h ├── gtcmd_cst_init.c ├── gtcmd_rundown.c ├── gtcml.h ├── gtcml_blklck.c ├── gtcml_chklck.c ├── gtcml_chkprc.c ├── gtcml_chkreg.c ├── gtcml_decrlock.c ├── gtcml_dolock.c ├── gtcml_incrlock.c ├── gtcml_lckclr.c ├── gtcml_lcktime.c ├── gtcml_lkbckout.c ├── gtcml_lkcancel.c ├── gtcml_lkhold.c ├── gtcml_lklist.c ├── gtcml_lkrundown.c ├── gtcml_lkstarve.c ├── gtcml_lock.c ├── gtcml_lock_internal.c ├── gtcml_unlock.c ├── gtcml_zallocate.c ├── gtcml_zdeallocate.c ├── gtcmlkdef.h ├── gtcmtr_bufflush.c ├── gtcmtr_data.c ├── gtcmtr_get.c ├── gtcmtr_get_key.c ├── gtcmtr_increment.c ├── gtcmtr_initproc.c ├── gtcmtr_initreg.c ├── gtcmtr_kill.c ├── gtcmtr_lkacquire.c ├── gtcmtr_lkcanall.c ├── gtcmtr_lkcancel.c ├── gtcmtr_lkdelete.c ├── gtcmtr_lke_clearrep.c ├── gtcmtr_lke_clearreq.c ├── gtcmtr_lke_showrep.c ├── gtcmtr_lke_showreq.c ├── gtcmtr_lkreqimmed.c ├── gtcmtr_lkreqnode.c ├── gtcmtr_lkrequest.c ├── gtcmtr_lkresume.c ├── gtcmtr_lksuspend.c ├── gtcmtr_order.c ├── gtcmtr_protos.h ├── gtcmtr_put.c ├── gtcmtr_query.c ├── gtcmtr_reversequery.c ├── gtcmtr_terminate.c ├── gtcmtr_zprevious.c ├── gtcmtr_zwithdraw.c ├── gvcmx_canremlk.c ├── gvcmx_data.c ├── gvcmx_get.c ├── gvcmx_increment.c ├── gvcmx_kill.c ├── gvcmx_order.c ├── gvcmx_put.c ├── gvcmx_query.c ├── gvcmx_reqremlk.c ├── gvcmx_resremlk.c ├── gvcmx_reversequery.c ├── gvcmx_susremlk.c ├── gvcmx_unlock.c ├── gvcmx_zprevious.c ├── gvcmy_close.c ├── gvcmy_open.c ├── gvcmy_open_ch.c ├── gvcmy_remlkmgr.c ├── gvcmy_remlkmgr.h ├── gvcmy_rundown.c ├── gvcmz.h ├── gvcmz_bunch.c ├── gvcmz_clrlkreq.c ├── gvcmz_doop.c ├── gvcmz_error.c ├── gvcmz_int_lkcancel.c ├── gvcmz_lkacquire_ast.c ├── gvcmz_lkcancel_ast.c ├── gvcmz_lkread_ast.c ├── gvcmz_lksublist.c ├── gvcmz_lksuspend_ast.c ├── gvcmz_neterr.c ├── gvcmz_neterr.h ├── gvcmz_neterr_set.c ├── gvcmz_netopen.c ├── gvcmz_sndlkremove.c ├── gvcmz_zdef_ast.c ├── gvcmz_zflush.c ├── lock_cmtimeout.c ├── lock_cmtimeout.h └── per2962.h ├── sr_unix ├── add_inter.c ├── aio_shim.c ├── alternate_sighandling.h ├── anticipatory_freeze.c ├── arlinkdbg.h ├── ast.h ├── auto_zlink.c ├── auto_zlink.h ├── backup_buffer_flush.c ├── bin_load.c ├── bit_op.h ├── buildaux.csh ├── buildaux_dse.csh ├── buildaux_gde.csh ├── buildaux_gtcm_gnp_server.csh ├── buildaux_gtcm_pkdisp.csh ├── buildaux_gtcm_play.csh ├── buildaux_gtcm_server.csh ├── buildaux_gtcm_shmclean.csh ├── buildaux_gtmcrypt.csh ├── buildaux_gtmsecshr.csh ├── buildaux_lke.csh ├── buildaux_mupip.csh ├── buildbdp.csh ├── buildbta.csh ├── builddbg.csh ├── buildpro.csh ├── buildshr.csh ├── buildwarn.awk ├── buildwarn.csh ├── callg.c ├── callintogtmxfer.c ├── callintogtmxfer.h ├── ccp_cluster_lock_wake.c ├── ccp_fid_msg.c ├── ccp_sendmsg.c ├── ccp_userwait.c ├── ce_init.c ├── ce_substitute.c ├── cenable.c ├── cenable.h ├── ch_cond_core.c ├── ch_overrun.c ├── change_fhead_timer.c ├── check_encrypt_support.sh ├── check_utf8_support.csh ├── ci_load_table_rtn_entry.c ├── ci_ret_code.c ├── clear_cache_array.c ├── clear_cache_array.h ├── cli.c ├── cli.h ├── cli_disallow.c ├── cli_disallow.h ├── cli_lex.c ├── cli_parse.c ├── cli_parse.h ├── cmidefsp.h ├── cms_load.csh ├── cms_load_pre_v42.csh ├── comimage.csh ├── comlist.csh ├── comp_lits.c ├── comque.csh ├── condstk_expand.c ├── configure.gtc ├── continue_handler.c ├── continue_handler.h ├── continue_proc.c ├── coverage_cc.sh ├── crit_wake.c ├── ctrap_set.c ├── ctrlc_handler.c ├── ctrlc_handler.h ├── ctrlc_set.c ├── custom_errors_sample.txt ├── cvtprot.c ├── daemon_crit.c ├── db_ipcs_reset.c ├── db_ipcs_reset.h ├── db_read.h ├── db_snapshot.h ├── db_write.h ├── db_write_eof_block.c ├── db_write_eof_block.h ├── dbfilop.c ├── dbinit_ch.c ├── dec_err.c ├── decomment.m ├── deferred_exit_handler.c ├── deferred_exit_handler.h ├── disk_block_available.c ├── disk_block_available.h ├── dlopen_libyottadb.c ├── dm_audit_log.c ├── dm_audit_log.h ├── dm_read.c ├── do_semop.c ├── do_semop.h ├── do_shmat.c ├── do_shmat.h ├── do_verify.c ├── do_xform.c ├── dollarh.c ├── dollarh.h ├── dpgbldir_sysops.c ├── dpgbldir_sysops.h ├── drive_non_ydb_signal_handler_if_any.c ├── dse.c ├── dse_cmd.c ├── dse_cmd_disallow.c ├── dse_cmd_disallow.h ├── dse_ctrlc_handler.c ├── dse_help.c ├── dse_main.c ├── dse_open.c ├── dse_puttime.c ├── dse_remove.c ├── dsk_read.c ├── dsk_write_nocache.c ├── eintr_wrapper_semop.h ├── err_init.c ├── error_return.c ├── errorsp.h ├── exi_ch.c ├── extract_signal_info.c ├── exttab_parse.c ├── exttime.c ├── f_char.c ├── f_piece.c ├── fake_enospc.c ├── fake_enospc.h ├── fgn_getinfo.c ├── fgncalsp.h ├── file_head_read.c ├── file_head_write.c ├── file_input.c ├── file_input.h ├── filestruct.h ├── fix_pages.c ├── forced_exit_err_display.c ├── forced_exit_err_display.h ├── fork_init.h ├── ftok_sem_get_common.c ├── ftok_sem_incrcnt.c ├── ftok_sem_incrcnt.h ├── ftok_sems.c ├── ftok_sems.h ├── gbldirnam.h ├── gcall.h ├── gdedefaults.gtc ├── gdeget.m ├── gdeput.m ├── gdeverif.m ├── gds_file_size.c ├── gds_rundown.c ├── gds_rundown_ch.c ├── gds_rundown_err_cleanup.c ├── gds_rundown_err_cleanup.h ├── gdsfheadsp.h ├── gdsfilext.c ├── gdsfilext_nojnl.c ├── gdsfilext_nojnl.h ├── gen_gtm_threadgbl_deftypes.csh ├── gen_ttt.csh ├── gen_vms_ttt.csh ├── gen_xfer_desc.cmake ├── gen_xfer_desc.csh ├── generate_help.csh ├── generic_signal_handler.c ├── generic_signal_handler.h ├── gengtmdeftypes.csh ├── genpat.c ├── get_command_line.c ├── get_full_path.c ├── get_page_size.c ├── get_src_line.c ├── get_syslog_flags.c ├── get_syslog_flags.h ├── get_ztimeout.c ├── getcaps.c ├── getcaps.h ├── geteditor.c ├── geteditor.h ├── getjobnum.c ├── getmaxfds.c ├── getmaxfds.h ├── getstorage.c ├── getzmode.c ├── getzprocess.c ├── go_load.c ├── golevel.c ├── goq_load.c ├── grab_crit.c ├── grab_crit_encr_cycle_sync.c ├── grab_crit_immediate.c ├── grab_latch.c ├── grab_lock.c ├── gse.mpt ├── gt_ar.csh ├── gt_as.csh ├── gt_cc.csh ├── gt_timer.h ├── gt_timers.c ├── gt_timers_add_safe_hndlrs.c ├── gt_timers_add_safe_hndlrs.h ├── gtm.c ├── gtm_aio.h ├── gtm_asm_establish.c ├── gtm_bintim.c ├── gtm_c_stack_trace.c ├── gtm_c_stack_trace_semop.c ├── gtm_c_stack_trace_semop.h ├── gtm_ci.c ├── gtm_cip.c ├── gtm_compile.c ├── gtm_compile.h ├── gtm_confstr.c ├── gtm_conv.c ├── gtm_conv.h ├── gtm_conv_init.c ├── gtm_cshrc.csh ├── gtm_descript.h ├── gtm_dump.c ├── gtm_dump_core.c ├── gtm_env.csh ├── gtm_env_init_sp.c ├── gtm_env_translate.c ├── gtm_exit_handler.c ├── gtm_exit_handler.h ├── gtm_fd_trace.c ├── gtm_file_remove.c ├── gtm_file_stat.c ├── gtm_filter_command.c ├── gtm_filter_command.h ├── gtm_fork_n_core.c ├── gtm_ftok.c ├── gtm_getmsg.c ├── gtm_getpwuid.c ├── gtm_icu.c ├── gtm_icu.h ├── gtm_icu_api.h ├── gtm_image_exit.c ├── gtm_init_env.c ├── gtm_ipc.h ├── gtm_is_main_thread.c ├── gtm_isanlp.c ├── gtm_isanlp.h ├── gtm_main.c ├── gtm_multi_proc.c ├── gtm_multi_proc.h ├── gtm_multi_thread.c ├── gtm_multi_thread.h ├── gtm_permissions.c ├── gtm_permissions.h ├── gtm_pipe.c ├── gtm_pipe.h ├── gtm_poll.h ├── gtm_post_startup_check_init.c ├── gtm_post_startup_check_init.h ├── gtm_pthread.h ├── gtm_pthread_init_key.c ├── gtm_pthread_init_key.h ├── gtm_putmsg.c ├── gtm_putmsg_list.c ├── gtm_rel_quant.h ├── gtm_rename.c ├── gtm_repl_multi_inst.h ├── gtm_sem.h ├── gtm_semaphore.h ├── gtm_semutils.c ├── gtm_semutils.h ├── gtm_signal.h ├── gtm_startup.c ├── gtm_startup.h ├── gtm_statvfs.h ├── gtm_stdio.c ├── gtm_stdio.h ├── gtm_syslog.h ├── gtm_system.c ├── gtm_term.h ├── gtm_termios.h ├── gtm_text_alloc.c ├── gtm_threadgbl_asm_access.txt ├── gtm_threadgbl_deftypes_asm.si ├── gtm_times.h ├── gtm_tls.c ├── gtm_tls.h ├── gtm_tls_funclist.h ├── gtm_tls_loadlibrary.c ├── gtm_tparm.c ├── gtm_tparm.h ├── gtm_tputs.c ├── gtm_tputs.h ├── gtm_trigger.c ├── gtm_trigger.h ├── gtm_trigger_trc.h ├── gtm_ulimit.h ├── gtm_unique_file_util.c ├── gtm_unlink_all.c ├── gtm_unlink_all.h ├── gtm_utf8.c ├── gtm_utf8.h ├── gtm_version_dirname.csh ├── gtm_version_dirname.sed ├── gtm_wake.c ├── gtm_zlib.c ├── gtm_zlib.h ├── gtmci.c ├── gtmci.h ├── gtmci_ch.c ├── gtmci_isv.c ├── gtmcrypt.h ├── gtmcrypt_entry.c ├── gtmcrypt_funclist.h ├── gtmdbgflags.h ├── gtmdef.csh ├── gtmdefinedtypestodb.m ├── gtmexcludetypelist.txt ├── gtmgblstat.c ├── gtmgblstat.h ├── gtmgblstat.xc ├── gtmhelp.m ├── gtmhlpld.m ├── gtmio.h ├── gtmio_ch.c ├── gtmlink.c ├── gtmlink.h ├── gtmpcat_sh.txt ├── gtmrecv.c ├── gtmrecv.h ├── gtmrecv_end.c ├── gtmrecv_fetchresync.c ├── gtmrecv_poll_actions.c ├── gtmrecv_process.c ├── gtmrecv_shutdown.c ├── gtmrecv_stopfilter.c ├── gtmsecshr.c ├── gtmsecshr.h ├── gtmsecshr_sock_cleanup.c ├── gtmsecshr_sock_init.c ├── gtmsecshr_wrapper.c ├── gtmsiginfo.h ├── gtmsource.c ├── gtmsource.h ├── gtmsource_changelog.c ├── gtmsource_checkforbacklog.c ├── gtmsource_checkhealth.c ├── gtmsource_end.c ├── gtmsource_flush_fh.c ├── gtmsource_freeze.c ├── gtmsource_get_opt.c ├── gtmsource_heartbeat.c ├── gtmsource_inline.h ├── gtmsource_jnl_release_timer.c ├── gtmsource_jnlpool.c ├── gtmsource_losttncomplete.c ├── gtmsource_mode_change.c ├── gtmsource_needrestart.c ├── gtmsource_onln_rlbk_clnup.c ├── gtmsource_process.c ├── gtmsource_process_ops.c ├── gtmsource_readfiles.c ├── gtmsource_readpool.c ├── gtmsource_rootprimary_init.c ├── gtmsource_seqno_init.c ├── gtmsource_showbacklog.c ├── gtmsource_shutdown.c ├── gtmsource_srv_latch.c ├── gtmsource_srv_latch.h ├── gtmsource_statslog.c ├── gtmsource_stopfilter.c ├── gtmsrc.csh ├── gtmthreadgblasm.m ├── gtmxc_types.h ├── gv_trig_cmd_table.h ├── gv_trigger.c ├── gv_trigger.h ├── gv_trigger_protos.h ├── gvcmy_open.h ├── gvcst_init_sysops.c ├── gvcst_spr_data.c ├── gvcst_spr_kill.c ├── gvcst_spr_order.c ├── gvcst_spr_query.c ├── gvcst_spr_queryget.c ├── gvcst_spr_reversequery.c ├── gvcst_spr_zprevious.c ├── hex2utf.mpt ├── hugetlbfs_overrides.c ├── hugetlbfs_overrides.h ├── incr_link.c ├── incr_link.h ├── init_gtm.c ├── install_debug_symbols_sh.txt ├── install_gtmpcat_sh.txt ├── interlock.h ├── invocation_mode.h ├── io_init_name.c ├── io_is_rm.c ├── io_is_sn.c ├── io_open_try.c ├── io_type.c ├── iob.h ├── iob_close.c ├── iob_flush.c ├── iob_open_rd.c ├── iob_open_wt.c ├── iob_read.c ├── iob_write.c ├── ioff_open.c ├── iopi_iocontrol.c ├── iopi_open.c ├── iorm_close.c ├── iorm_flush.c ├── iorm_get.c ├── iorm_open.c ├── iorm_rdone.c ├── iorm_read.c ├── iorm_readfl.c ├── iorm_use.c ├── iorm_write.c ├── iorm_wteol.c ├── iormdef.h ├── iosocket_pass_local.c ├── iosocket_tls.c ├── iosp.h ├── iott_close.c ├── iott_edit.c ├── iott_edit.h ├── iott_flush.c ├── iott_flush_time.h ├── iott_iocontrol.c ├── iott_open.c ├── iott_rdone.c ├── iott_read.c ├── iott_readfl.c ├── iott_recall_array_add.c ├── iott_resetterm.c ├── iott_setterm.c ├── iott_use.c ├── iott_write.c ├── iottdef.h ├── iottdefsp.h ├── ious_iocontrol.c ├── ious_open.c ├── ious_rdone.c ├── ious_read.c ├── ious_readfl.c ├── ious_write.c ├── ious_wtone.c ├── ipcrmid.c ├── ipcrmid.h ├── is_defunct_pid.c ├── is_defunct_pid.h ├── is_file_identical.c ├── is_fstype_nfs.c ├── is_fstype_nfs.h ├── is_icu_symbol_rename.csh ├── is_proc_alive.c ├── is_raw_dev.c ├── is_raw_dev.h ├── jnl_file_close_timer.c ├── jnl_file_close_timer.h ├── jnl_file_extend.c ├── jnl_file_open.c ├── jnl_fsync.c ├── jnl_output_sp.c ├── jnl_prc_vector.c ├── jnlext_merge_sort_prepare.c ├── jnlext_write.c ├── jnlpool_init.c ├── jnlsp.h ├── jobchild_init.c ├── jobchild_init.h ├── joberr.h ├── joberr_table.h ├── jobexam_signal_handler.c ├── jobexam_signal_handler.h ├── jobsp.h ├── laberror.c ├── lib_list_ar.sed ├── lib_list_lint.sed ├── libyottadb.h ├── libyottadb_dbg.h ├── libyottadb_int.h ├── libyottadb_rtns.h ├── lintgtm.csh ├── lintimage.csh ├── list_file.c ├── lke.c ├── lke_cmd.c ├── lke_cmd_disallow.c ├── lke_cmd_disallow.h ├── lke_ctrlc_handler.c ├── lke_fileio.c ├── lke_fileio.h ├── lke_getansw.c ├── lke_help.c ├── lke_main.c ├── load.h ├── lockdefs.h ├── lowerc_cp.sh ├── lref_parse.c ├── m_zrupdate.c ├── m_ztrigger.c ├── make_dmode.c ├── make_dmode.h ├── map_sym.c ├── mdefsa.h ├── mdefsp.h ├── memprot.c ├── memprot.h ├── mkutf8dir.csh ├── mmrhash.c ├── mmrhash.h ├── mu_all_version_standalone.c ├── mu_all_version_standalone.h ├── mu_cre_file.c ├── mu_cre_structs.c ├── mu_cre_structs.h ├── mu_decrypt.c ├── mu_decrypt.h ├── mu_extract.c ├── mu_getkey.c ├── mu_getkey.h ├── mu_getlst.c ├── mu_gvis.c ├── mu_int_ch.c ├── mu_op_open.c ├── mu_op_open.h ├── mu_outofband_setup.c ├── mu_replpool_grab_sem.c ├── mu_replpool_release_sem.c ├── mu_rndwn_all.c ├── mu_rndwn_all.h ├── mu_rndwn_file.c ├── mu_rndwn_file.h ├── mu_rndwn_repl_instance.c ├── mu_rndwn_repl_instance.h ├── mu_rndwn_replpool.c ├── mu_rndwn_replpool.h ├── mu_rndwn_rlnkctl.c ├── mu_rndwn_rlnkctl.h ├── mu_signal_process.c ├── mu_size_arsample.c ├── mu_size_impsample.c ├── mu_size_scan.c ├── mu_swap_root.c ├── mu_term_setup.c ├── mu_term_setup.h ├── mu_trig_trgfile.c ├── mu_trig_trgfile.h ├── mu_truncate.c ├── mu_truncate.h ├── mu_upgrd_sig_init.h ├── mubexpfilnam.c ├── mubfilcpy.c ├── mubgetfil.c ├── mubinccpy.c ├── mucblkini.c ├── mumps.cmake ├── mumps_clitab.c ├── mup_bak_sys.c ├── mupip.c ├── mupip_cmd.c ├── mupip_cmd_disallow.c ├── mupip_cmd_disallow.h ├── mupip_crypt.c ├── mupip_crypt.h ├── mupip_ctrl.c ├── mupip_ctrl.h ├── mupip_cvtgbl.c ├── mupip_cvtpgm.c ├── mupip_dump_fhead.c ├── mupip_dump_fhead.h ├── mupip_endiancvt.c ├── mupip_endiancvt.h ├── mupip_exit.c ├── mupip_exit_handler.c ├── mupip_ftok.c ├── mupip_ftok.h ├── mupip_hash.c ├── mupip_hash.h ├── mupip_help.c ├── mupip_load_reg_list.c ├── mupip_load_reg_list.h ├── mupip_load_triggerfile.h ├── mupip_main.c ├── mupip_quit.c ├── mupip_rctldump.c ├── mupip_rctldump.h ├── mupip_reorg_encrypt.c ├── mupip_reorg_encrypt.h ├── mupip_restore.c ├── mupip_rundown.c ├── mupip_sems.c ├── mupip_sems.h ├── mupip_set_file.c ├── mupip_set_jnlfile.c ├── mupip_size.c ├── mupip_size.h ├── mupip_trigger.c ├── mupip_trigger.h ├── muprecsp.h ├── mur_cre_file_extfmt.c ├── mur_read_file_sp.c ├── murgetlst.c ├── mutex.c ├── mutexsp.h ├── null_handler.c ├── obj_code.c ├── obj_file.c ├── obj_filesp.h ├── obj_fileu.c ├── offset.awk ├── offset.csh ├── ojchildioclean.c ├── ojchildioset.c ├── ojchildparms.c ├── ojchkfs.c ├── ojparams.c ├── ojstartchild.c ├── op_currhd.c ├── op_fgnlookup.c ├── op_fnextract.c ├── op_fnextract.h ├── op_fnfgncal.c ├── op_fngetdvi.c ├── op_fngetjpi.c ├── op_fngetlki.c ├── op_fngetsyi.c ├── op_fnp1.c ├── op_fnpiece.c ├── op_fnpopulation.c ├── op_fnrandom.c ├── op_fnzcall.c ├── op_fnzconvert.c ├── op_fnzfile.c ├── op_fnzlkid.c ├── op_fnzparse.c ├── op_fnzpeek.c ├── op_fnzpid.c ├── op_fnzpriv.c ├── op_fnzsearch.c ├── op_fnzsetprv.c ├── op_fnzsyslog.c ├── op_fnztrnlnm.c ├── op_fnzyhash.c ├── op_job.c ├── op_setextract.c ├── op_setp1.c ├── op_setpiece.c ├── op_zattach.c ├── op_zedit.c ├── op_zhelp_xfr.c ├── op_zhorolog.c ├── op_zlink.c ├── op_zmess.c ├── op_zrupdate.c ├── op_ztrigger.c ├── op_zut.c ├── outc.c ├── parse_file.c ├── parse_file.h ├── peekbyname.mpt ├── pipeint_stats.c ├── pipeint_stats.h ├── probecrit_rec.h ├── proc_wait_stat.c ├── proc_wait_stat.h ├── process_reorg_encrypt_restart.c ├── process_reorg_encrypt_restart.h ├── put_cdidx.c ├── random.c ├── random.h ├── rc.h ├── rc_cpt.h ├── rc_cpt_ops.c ├── readline.c ├── readline.h ├── recover_truncate.c ├── recover_truncate.h ├── recvpool_init.c ├── reg_cmcheck.c ├── rel_crit.c ├── rel_latch.c ├── rel_lock.c ├── rel_quant.c ├── relinkctl.c ├── relinkctl.h ├── remove_rms.c ├── repl_inst_create.c ├── repl_inst_dump.c ├── repl_inst_dump.h ├── repl_inst_edit.c ├── repl_inst_ftok_counter_halted.c ├── repl_inst_ftok_counter_halted.h ├── repl_instance.c ├── repl_instance.h ├── repl_ipc_cleanup.c ├── repl_log.c ├── repl_log_init.c ├── repl_logfileinfo_get.c ├── repl_msg.h ├── repl_sem.c ├── repl_sem.h ├── repl_sem_sp.h ├── repl_sp.h ├── rmv_mul_slsh.c ├── rmv_mul_slsh.h ├── rtnhdr.h ├── rtnobj.c ├── rtnobj.h ├── rts_error.c ├── runall.csh ├── runall_cc_many.csh ├── runall_cc_one.csh ├── same_device_check.c ├── sapi_return_subscr_nodes.c ├── sapi_save_targ_key_subscr_nodes.c ├── scantypedefs.m ├── secshr_client.c ├── secshr_client.h ├── send_msg.c ├── set_jnl_file_close.c ├── set_library_path.csh ├── set_num_additional_processors.c ├── set_zstatus.c ├── setactive.csh ├── setup_altstack.c ├── sgtm_putmsg.c ├── sig_init.c ├── sig_init.h ├── sig_init_lang_altmain.c ├── sighnd_debug.h ├── signal_exit_handler.c ├── signal_exit_handler.h ├── simple_timeout_timer.c ├── sleep.c ├── sleep.h ├── source_file.c ├── splitmix64.c ├── ss_anal_shdw_file.c ├── ss_context_mgr.c ├── ss_get_block.c ├── ss_initiate.c ├── ss_lock_facility.c ├── ss_lock_facility.h ├── ss_read_block.c ├── ss_release.c ├── ss_shdw_mgr.c ├── ss_write_block.c ├── std_dev_outbndset.c ├── stop_image.c ├── stop_image_ch.c ├── str_match.c ├── str_match.h ├── stripmine.awk ├── suspend.c ├── suspsigs_handler.c ├── suspsigs_handler.h ├── t_recycled2free.c ├── t_recycled2free.h ├── tab_probecrit_rec.h ├── term_setup.c ├── timersp.h ├── trans_log_name.c ├── trigger.h ├── trigger_cmd.c ├── trigger_compare.c ├── trigger_compare_protos.h ├── trigger_delete.c ├── trigger_delete_protos.h ├── trigger_fill_xecute_buffer.c ├── trigger_fill_xecute_buffer.h ├── trigger_gbl_fill_xecute_buffer.c ├── trigger_gbl_fill_xecute_buffer.h ├── trigger_incr_cycle.c ├── trigger_incr_cycle.h ├── trigger_locate_andor_load.c ├── trigger_parse.c ├── trigger_parse_protos.h ├── trigger_read_andor_locate.h ├── trigger_scan_string.c ├── trigger_scan_string.h ├── trigger_select.c ├── trigger_select_protos.h ├── trigger_source_read_andor_verify.c ├── trigger_subs_def.h ├── trigger_tpwrap_ch.c ├── trigger_trgfile.c ├── trigger_trgfile_protos.h ├── trigger_update.c ├── trigger_update_protos.h ├── trigger_upgrade.c ├── trigger_upgrade_protos.h ├── trigger_user_name.c ├── trigger_user_name.h ├── trmdef.h ├── ttt.txt ├── upd_log_init.c ├── urx_remove.c ├── utf2hex.mpt ├── utfcgr.c ├── utfcgr.h ├── utfcgr_trc.h ├── util_exit_handler.c ├── util_help.c ├── util_help.h ├── util_in_open.c ├── util_input.c ├── util_out_print_gtmio.c ├── util_out_print_vaparm.h ├── util_output.c ├── util_output_cm.c ├── util_spawn.c ├── v15_filestruct.h ├── versions.csh ├── wait_for_disk_space.c ├── wait_for_disk_space.h ├── warn_db_sz.c ├── warn_db_sz.h ├── wcs_clean_dbsync.c ├── wcs_clean_dbsync.h ├── wcs_clean_dbsync_timer.c ├── wcs_flu.c ├── wcs_get_space.c ├── wcs_write_in_progress_wait.c ├── wcs_write_in_progress_wait.h ├── wcs_wt.h ├── wcs_wt_restart.c ├── wcs_wterror.c ├── wcs_wtfini.c ├── wcs_wtfini_nocrit.c ├── wcs_wtstart.c ├── wcs_wtstart_fini.c ├── xoshiro.h ├── xoshiro256plusplus.c ├── xtrgtmtypes.awk ├── ydb.gtc ├── ydb_altalrm_sighandler.c ├── ydb_altcont_sighandler.c ├── ydb_altio_sighandler.c ├── ydb_altmain_sighandler.c ├── ydb_altsusp_sighandler.c ├── ydb_altusr1_sighandler.c ├── ydb_call_variadic_plist_func.c ├── ydb_child_init.c ├── ydb_chk_dist.c ├── ydb_chk_dist.h ├── ydb_ci.c ├── ydb_ci_get_info.c ├── ydb_ci_get_info_t.c ├── ydb_ci_t.c ├── ydb_ci_tab_open.c ├── ydb_ci_tab_open_t.c ├── ydb_ci_tab_switch.c ├── ydb_ci_tab_switch_t.c ├── ydb_cip.c ├── ydb_cip_helper.c ├── ydb_cip_t.c ├── ydb_data_s.c ├── ydb_data_st.c ├── ydb_decode_s.c ├── ydb_decode_st.c ├── ydb_delete_excl_s.c ├── ydb_delete_excl_st.c ├── ydb_delete_s.c ├── ydb_delete_st.c ├── ydb_eintr_handler.c ├── ydb_eintr_handler_t.c ├── ydb_encode_decode.h ├── ydb_encode_decode_fnptr_table.h ├── ydb_encode_s.c ├── ydb_encode_st.c ├── ydb_env_set.gtc ├── ydb_env_unset.gtc ├── ydb_exit.c ├── ydb_file_id_free.c ├── ydb_file_id_free_t.c ├── ydb_file_is_identical.c ├── ydb_file_is_identical_t.c ├── ydb_file_name_to_id.c ├── ydb_file_name_to_id_t.c ├── ydb_fork_n_core.c ├── ydb_free.c ├── ydb_get_s.c ├── ydb_get_st.c ├── ydb_hiber_start.c ├── ydb_hiber_start_wait_any.c ├── ydb_incr_s.c ├── ydb_incr_st.c ├── ydb_init.c ├── ydb_issue_invvarname_error.c ├── ydb_lock_decr_s.c ├── ydb_lock_decr_st.c ├── ydb_lock_incr_s.c ├── ydb_lock_incr_st.c ├── ydb_lock_s.c ├── ydb_lock_st.c ├── ydb_main_lang_init.c ├── ydb_malloc.c ├── ydb_message.c ├── ydb_message_t.c ├── ydb_nested_callin.c ├── ydb_node_next_s.c ├── ydb_node_next_st.c ├── ydb_node_previous_s.c ├── ydb_node_previous_st.c ├── ydb_os_signal_handler.c ├── ydb_os_signal_handler.h ├── ydb_set_s.c ├── ydb_set_st.c ├── ydb_setenv.c ├── ydb_setenv.h ├── ydb_sig_dispatch.c ├── ydb_simpleapi_ch.c ├── ydb_stdout_stderr_adjust.c ├── ydb_stdout_stderr_adjust_t.c ├── ydb_stm_atfork.c ├── ydb_stm_invoke_deferred_signal_handler.c ├── ydb_stm_thread.c ├── ydb_str2zwr_s.c ├── ydb_str2zwr_st.c ├── ydb_subscript_next_s.c ├── ydb_subscript_next_st.c ├── ydb_subscript_previous_s.c ├── ydb_subscript_previous_st.c ├── ydb_thread_is_main.c ├── ydb_timer_cancel.c ├── ydb_timer_cancel_t.c ├── ydb_timer_start.c ├── ydb_timer_start_t.c ├── ydb_tls_interface.h ├── ydb_tp_s.c ├── ydb_tp_s_common.c ├── ydb_tp_st.c ├── ydb_zstatus.c ├── ydb_zwr2str_s.c ├── ydb_zwr2str_st.c ├── ydbcrypt_interface.h ├── ydbenv.mpt ├── ydbexe_symbols.exp ├── ydbinstall.sh ├── ydbjnlf.mpt ├── ydbprocstuckexec.mpt ├── ygblstat.mpt ├── yottadb_symbols.exp ├── zbreaksp.h ├── zcall_package.c ├── zcall_package.h ├── zhist.c ├── zl_cmd_qlf.c ├── zlmov_lnames.c ├── zro_gettok.c ├── zro_load.c ├── zro_search.c ├── zro_shlibs.c ├── zro_shlibs.h ├── zroutinessp.h ├── zshow_devices.c ├── zshow_rctldump.c ├── zshow_zcalls.c ├── ztimeout_routines.c └── ztimeout_routines.h ├── sr_unix_cm ├── gtcm.h ├── gtcm_bgn_net.c ├── gtcm_cn_acpt.c ├── gtcm_cn_disc.c ├── gtcm_dmpstat.c ├── gtcm_end_net.c ├── gtcm_exit.c ├── gtcm_exit_ch.c ├── gtcm_hist.c ├── gtcm_init.c ├── gtcm_loop.c ├── gtcm_ping.c ├── gtcm_pkdisp.c ├── gtcm_pktdmp.c ├── gtcm_play.c ├── gtcm_play_main.c ├── gtcm_prsopt.c ├── gtcm_rep_err.c ├── gtcm_run.gtc ├── gtcm_server.c ├── gtcm_server_main.c ├── gtcm_shmclean.c ├── gtcm_shmclean_main.c ├── gtcm_slist.gtc ├── gtcm_sysenv.h ├── gtcm_term.c ├── omi.h ├── omi_buff_rsp.c ├── omi_dbms_ch.c ├── omi_dmp_pkt.c ├── omi_extstr.c ├── omi_gvextnam.c ├── omi_lkextnam.c ├── omi_prc_conn.c ├── omi_prc_def.c ├── omi_prc_disc.c ├── omi_prc_get.c ├── omi_prc_incr.c ├── omi_prc_kill.c ├── omi_prc_lock.c ├── omi_prc_next.c ├── omi_prc_ordr.c ├── omi_prc_qry.c ├── omi_prc_rord.c ├── omi_prc_set.c ├── omi_prc_sete.c ├── omi_prc_setp.c ├── omi_prc_stat.c ├── omi_prc_unla.c ├── omi_prc_unlc.c ├── omi_prc_unlk.c ├── omi_srvc_xct.c ├── rc_dbms_ch.c ├── rc_fnd_file.c ├── rc_frmt_lck.c ├── rc_gbl_ord.c ├── rc_iscan.c ├── rc_iscan.h ├── rc_nspace.h ├── rc_oflow.c ├── rc_prc_clsd.c ├── rc_prc_getp.c ├── rc_prc_getr.c ├── rc_prc_kill.c ├── rc_prc_lock.c ├── rc_prc_logn.c ├── rc_prc_opnd.c ├── rc_prc_set.c ├── rc_prc_setf.c ├── rc_rundown.c └── rc_srvc_xct.c ├── sr_unix_gnp ├── cmi_alloc.c ├── cmi_close.c ├── cmi_debug.c ├── cmi_idle.c ├── cmi_init.c ├── cmi_open.c ├── cmi_peer_info.c ├── cmi_read.c ├── cmi_write.c ├── cmi_write_urg.c ├── cmj_async.c ├── cmj_clb_async.c ├── cmj_err.c ├── cmj_exception.c ├── cmj_fini.c ├── cmj_firstone.c ├── cmj_getdeferred.c ├── cmj_getsockaddr.c ├── cmj_handler.c ├── cmj_housekeeping.c ├── cmj_incoming_call.c ├── cmj_init_clb.c ├── cmj_netinit.c ├── cmj_postevent.c ├── cmj_read.c ├── cmj_select.c ├── cmj_setupfd.c ├── cmj_unit2clb.c ├── cmj_write.c ├── cmu_getclb.c ├── cmu_ntdroot.c ├── gtcm_ch.c ├── gtcm_exi_ch.c ├── gtcm_gnp_clitab.c ├── gtcm_gnp_pktdmp.c ├── gtcm_gnp_pktdmp.h ├── gtcm_gnp_server.c ├── gtcm_gnp_server_main.c ├── gtcm_open_cmerrlog.c ├── gtcm_open_cmerrlog.h ├── gtcm_urgread_ast.c ├── gtcmd_ini_reg.c └── gvcmz_errmsg.c ├── sr_unix_nsb ├── comp_lits.c ├── obj_code.c ├── obj_filesp.h ├── opcode_def.h ├── rtnhdr.h ├── shrink_jmps.c └── ttt.txt ├── sr_x86_64 ├── GTMDefinedTypesInitDebug.m ├── GTMDefinedTypesInitRelease.m ├── aswp.s ├── call_dm.s ├── compswap.s ├── debug.si ├── dm_start.s ├── emit_code_sp.c ├── emit_code_sp.h ├── error.si ├── find_line_call.c ├── g_msf.si ├── incr_link_sp.h ├── linkage.si ├── make_dmode_sp.h ├── mum_tstart.s ├── mval_def.si ├── obj_filesp.c ├── op_bkpt.s ├── op_call.s ├── op_callsp.s ├── op_currtn.s ├── op_exfun.s ├── op_extcall.s ├── op_extexfun.s ├── op_extjmp.s ├── op_fetchintrrpt.s ├── op_fnget.s ├── op_fnzextract.s ├── op_forcenum.s ├── op_forchk1.s ├── op_forinit.s ├── op_forintrrpt.s ├── op_forlcldo.s ├── op_forloop.s ├── op_gettruth.s ├── op_iretmvad.s ├── op_linefetch.s ├── op_linestart.s ├── op_mprofcall.s ├── op_mprofcallsp.s ├── op_mprofexfun.s ├── op_mprofextcall.s ├── op_mprofextexfun.s ├── op_mprofforchk1.s ├── op_mprofforlcldo.s ├── op_mproflinefetch.s ├── op_mproflinestart.s ├── op_mval2bool.s ├── op_neg.s ├── op_restartpc.s ├── op_retarg.s ├── op_startintrrpt.s ├── op_sto.s ├── op_zhelp.s ├── opp_break.s ├── opp_bxrelop_contain.s ├── opp_bxrelop_equ.s ├── opp_bxrelop_follow.s ├── opp_bxrelop_gt.s ├── opp_bxrelop_lt.s ├── opp_bxrelop_ncontain.s ├── opp_bxrelop_nequ.s ├── opp_bxrelop_nfollow.s ├── opp_bxrelop_ngt.s ├── opp_bxrelop_nlt.s ├── opp_bxrelop_npattern.s ├── opp_bxrelop_nsortsafter.s ├── opp_bxrelop_pattern.s ├── opp_bxrelop_sortsafter.s ├── opp_commarg.s ├── opp_contain_retbool.s ├── opp_dmode.s ├── opp_equ_retbool.s ├── opp_equnul_retbool.s ├── opp_follow_retbool.s ├── opp_gt_retbool.s ├── opp_hardret.s ├── opp_inddevparms.s ├── opp_indfnname.s ├── opp_indfun.s ├── opp_indglvn.s ├── opp_indincr.s ├── opp_indlvadr.s ├── opp_indlvarg.s ├── opp_indlvnamadr.s ├── opp_indmerge.s ├── opp_indpat.s ├── opp_indrzshow.s ├── opp_indsavglvn.s ├── opp_indsavlvn.s ├── opp_indset.s ├── opp_indtext.s ├── opp_iretmval.s ├── opp_lt_retbool.s ├── opp_ncontain_retbool.s ├── opp_nequ_retbool.s ├── opp_nequnul_retbool.s ├── opp_newintrinsic.s ├── opp_newvar.s ├── opp_nfollow_retbool.s ├── opp_ngt_retbool.s ├── opp_nlt_retbool.s ├── opp_npattern_retbool.s ├── opp_nsortsafter_retbool.s ├── opp_pattern_retbool.s ├── opp_ret.s ├── opp_rterror.s ├── opp_setzbrk.s ├── opp_sortsafter_retbool.s ├── opp_svput.s ├── opp_tcommit.s ├── opp_trestart.s ├── opp_trollback.s ├── opp_tstart.s ├── opp_xnew.s ├── opp_zcont.s ├── opp_zg1.s ├── opp_zgoto.s ├── pseudo_ret.s ├── ttt.c ├── x86_64.h └── zbreaksp.h └── sr_x86_regs ├── i386.h ├── i386_mod_16.h ├── i386_mod_32.h ├── i386_ops.h ├── i386_ops_2b.h ├── i386_ops_g1.h ├── i386_ops_g2.h ├── i386_ops_g3.h ├── i386_ops_g4.h ├── i386_ops_g5.h ├── i386_ops_g6.h ├── i386_ops_g7.h ├── i386_ops_g8.h ├── i386_reg16.h ├── i386_reg32.h ├── i386_reg64.h ├── i386_reg8.h └── i386_ss.h /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/Dockerfile-debian -------------------------------------------------------------------------------- /Dockerfile-rocky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/Dockerfile-rocky -------------------------------------------------------------------------------- /Dockerfile-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/Dockerfile-test -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/README.md -------------------------------------------------------------------------------- /ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/ci/build.sh -------------------------------------------------------------------------------- /ci/commit_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/ci/commit_verify.sh -------------------------------------------------------------------------------- /ci/copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/ci/copyright.py -------------------------------------------------------------------------------- /ci/sort_warnings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/ci/sort_warnings.sh -------------------------------------------------------------------------------- /fuzzing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/fuzzing/Makefile -------------------------------------------------------------------------------- /fuzzing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/fuzzing/README.md -------------------------------------------------------------------------------- /fuzzing/cleaner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/fuzzing/cleaner.sh -------------------------------------------------------------------------------- /fuzzing/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/fuzzing/fuzz.sh -------------------------------------------------------------------------------- /fuzzing/io.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/fuzzing/io.h.patch -------------------------------------------------------------------------------- /pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/pre-commit -------------------------------------------------------------------------------- /pre-rebase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/pre-rebase -------------------------------------------------------------------------------- /sr_aarch64/aarch64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_aarch64/aarch64.h -------------------------------------------------------------------------------- /sr_aarch64/aswp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_aarch64/aswp.s -------------------------------------------------------------------------------- /sr_aarch64/call_dm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_aarch64/call_dm.s -------------------------------------------------------------------------------- /sr_aarch64/debug.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_aarch64/debug.si -------------------------------------------------------------------------------- /sr_aarch64/error.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_aarch64/error.si -------------------------------------------------------------------------------- /sr_aarch64/g_msf.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_aarch64/g_msf.si -------------------------------------------------------------------------------- /sr_aarch64/op_bkpt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_aarch64/op_bkpt.s -------------------------------------------------------------------------------- /sr_aarch64/op_call.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_aarch64/op_call.s -------------------------------------------------------------------------------- /sr_aarch64/op_neg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_aarch64/op_neg.s -------------------------------------------------------------------------------- /sr_aarch64/op_sto.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_aarch64/op_sto.s -------------------------------------------------------------------------------- /sr_aarch64/opp_ret.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_aarch64/opp_ret.s -------------------------------------------------------------------------------- /sr_aarch64/opp_zg1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_aarch64/opp_zg1.s -------------------------------------------------------------------------------- /sr_aarch64/ttt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_aarch64/ttt.c -------------------------------------------------------------------------------- /sr_armv6l: -------------------------------------------------------------------------------- 1 | sr_armv7l -------------------------------------------------------------------------------- /sr_armv7l/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/arm.h -------------------------------------------------------------------------------- /sr_armv7l/aswp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/aswp.s -------------------------------------------------------------------------------- /sr_armv7l/call_dm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/call_dm.s -------------------------------------------------------------------------------- /sr_armv7l/compswap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/compswap.s -------------------------------------------------------------------------------- /sr_armv7l/debug.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/debug.si -------------------------------------------------------------------------------- /sr_armv7l/dm_start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/dm_start.s -------------------------------------------------------------------------------- /sr_armv7l/error.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/error.si -------------------------------------------------------------------------------- /sr_armv7l/g_msf.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/g_msf.si -------------------------------------------------------------------------------- /sr_armv7l/linkage.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/linkage.si -------------------------------------------------------------------------------- /sr_armv7l/op_bkpt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/op_bkpt.s -------------------------------------------------------------------------------- /sr_armv7l/op_call.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/op_call.s -------------------------------------------------------------------------------- /sr_armv7l/op_exfun.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/op_exfun.s -------------------------------------------------------------------------------- /sr_armv7l/op_fnget.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/op_fnget.s -------------------------------------------------------------------------------- /sr_armv7l/op_neg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/op_neg.s -------------------------------------------------------------------------------- /sr_armv7l/op_sto.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/op_sto.s -------------------------------------------------------------------------------- /sr_armv7l/op_zhelp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/op_zhelp.s -------------------------------------------------------------------------------- /sr_armv7l/opp_ret.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/opp_ret.s -------------------------------------------------------------------------------- /sr_armv7l/opp_xnew.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/opp_xnew.s -------------------------------------------------------------------------------- /sr_armv7l/opp_zg1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/opp_zg1.s -------------------------------------------------------------------------------- /sr_armv7l/stack.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/stack.si -------------------------------------------------------------------------------- /sr_armv7l/ttt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/ttt.c -------------------------------------------------------------------------------- /sr_armv7l/zbreaksp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_armv7l/zbreaksp.h -------------------------------------------------------------------------------- /sr_i386/aswp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/aswp.s -------------------------------------------------------------------------------- /sr_i386/auto_zlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/auto_zlink.c -------------------------------------------------------------------------------- /sr_i386/auto_zlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/auto_zlink.h -------------------------------------------------------------------------------- /sr_i386/call_dm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/call_dm.s -------------------------------------------------------------------------------- /sr_i386/caller_id.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/caller_id.s -------------------------------------------------------------------------------- /sr_i386/callg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/callg.s -------------------------------------------------------------------------------- /sr_i386/ci_restart.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/ci_restart.s -------------------------------------------------------------------------------- /sr_i386/compswap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/compswap.s -------------------------------------------------------------------------------- /sr_i386/dm_start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/dm_start.s -------------------------------------------------------------------------------- /sr_i386/emit_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/emit_code.c -------------------------------------------------------------------------------- /sr_i386/emit_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/emit_code.h -------------------------------------------------------------------------------- /sr_i386/error.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/error.si -------------------------------------------------------------------------------- /sr_i386/follow.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/follow.s -------------------------------------------------------------------------------- /sr_i386/g_msf.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/g_msf.si -------------------------------------------------------------------------------- /sr_i386/incr_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/incr_link.c -------------------------------------------------------------------------------- /sr_i386/linkage.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/linkage.si -------------------------------------------------------------------------------- /sr_i386/make_dmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/make_dmode.c -------------------------------------------------------------------------------- /sr_i386/masscomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/masscomp.h -------------------------------------------------------------------------------- /sr_i386/mint2mval.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/mint2mval.s -------------------------------------------------------------------------------- /sr_i386/mum_tstart.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/mum_tstart.s -------------------------------------------------------------------------------- /sr_i386/mval2bool.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/mval2bool.s -------------------------------------------------------------------------------- /sr_i386/mval2mint.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/mval2mint.s -------------------------------------------------------------------------------- /sr_i386/mval2num.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/mval2num.s -------------------------------------------------------------------------------- /sr_i386/mval_def.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/mval_def.si -------------------------------------------------------------------------------- /sr_i386/obj_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/obj_file.c -------------------------------------------------------------------------------- /sr_i386/op_bkpt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_bkpt.s -------------------------------------------------------------------------------- /sr_i386/op_call.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_call.s -------------------------------------------------------------------------------- /sr_i386/op_callsp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_callsp.s -------------------------------------------------------------------------------- /sr_i386/op_contain.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_contain.s -------------------------------------------------------------------------------- /sr_i386/op_currtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_currtn.s -------------------------------------------------------------------------------- /sr_i386/op_equ.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_equ.s -------------------------------------------------------------------------------- /sr_i386/op_equnul.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_equnul.s -------------------------------------------------------------------------------- /sr_i386/op_exfun.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_exfun.s -------------------------------------------------------------------------------- /sr_i386/op_extcall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_extcall.s -------------------------------------------------------------------------------- /sr_i386/op_extjmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_extjmp.s -------------------------------------------------------------------------------- /sr_i386/op_fnget.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_fnget.s -------------------------------------------------------------------------------- /sr_i386/op_follow.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_follow.s -------------------------------------------------------------------------------- /sr_i386/op_forchk1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_forchk1.s -------------------------------------------------------------------------------- /sr_i386/op_forinit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_forinit.s -------------------------------------------------------------------------------- /sr_i386/op_forloop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_forloop.s -------------------------------------------------------------------------------- /sr_i386/op_neg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_neg.s -------------------------------------------------------------------------------- /sr_i386/op_numcmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_numcmp.s -------------------------------------------------------------------------------- /sr_i386/op_pattern.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_pattern.s -------------------------------------------------------------------------------- /sr_i386/op_retarg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_retarg.s -------------------------------------------------------------------------------- /sr_i386/op_sto.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_sto.s -------------------------------------------------------------------------------- /sr_i386/op_zhelp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/op_zhelp.s -------------------------------------------------------------------------------- /sr_i386/opp_break.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/opp_break.s -------------------------------------------------------------------------------- /sr_i386/opp_dmode.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/opp_dmode.s -------------------------------------------------------------------------------- /sr_i386/opp_indfun.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/opp_indfun.s -------------------------------------------------------------------------------- /sr_i386/opp_indpat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/opp_indpat.s -------------------------------------------------------------------------------- /sr_i386/opp_indset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/opp_indset.s -------------------------------------------------------------------------------- /sr_i386/opp_newvar.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/opp_newvar.s -------------------------------------------------------------------------------- /sr_i386/opp_ret.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/opp_ret.s -------------------------------------------------------------------------------- /sr_i386/opp_svput.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/opp_svput.s -------------------------------------------------------------------------------- /sr_i386/opp_tstart.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/opp_tstart.s -------------------------------------------------------------------------------- /sr_i386/opp_xnew.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/opp_xnew.s -------------------------------------------------------------------------------- /sr_i386/opp_zcont.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/opp_zcont.s -------------------------------------------------------------------------------- /sr_i386/opp_zg1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/opp_zg1.s -------------------------------------------------------------------------------- /sr_i386/opp_zgoto.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/opp_zgoto.s -------------------------------------------------------------------------------- /sr_i386/pseudo_ret.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/pseudo_ret.s -------------------------------------------------------------------------------- /sr_i386/zbreaksp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_i386/zbreaksp.h -------------------------------------------------------------------------------- /sr_linux/arch.gtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_linux/arch.gtc -------------------------------------------------------------------------------- /sr_linux/caller_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_linux/caller_id.c -------------------------------------------------------------------------------- /sr_port/act_in_gvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/act_in_gvt.c -------------------------------------------------------------------------------- /sr_port/actuallist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/actuallist.c -------------------------------------------------------------------------------- /sr_port/add_atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/add_atom.c -------------------------------------------------------------------------------- /sr_port/add_inter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/add_inter.h -------------------------------------------------------------------------------- /sr_port/aio_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/aio_shim.h -------------------------------------------------------------------------------- /sr_port/alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/alias.h -------------------------------------------------------------------------------- /sr_port/alloc_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/alloc_reg.c -------------------------------------------------------------------------------- /sr_port/alloc_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/alloc_reg.h -------------------------------------------------------------------------------- /sr_port/arit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/arit.h -------------------------------------------------------------------------------- /sr_port/asc2i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/asc2i.c -------------------------------------------------------------------------------- /sr_port/asc_hex2i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/asc_hex2i.c -------------------------------------------------------------------------------- /sr_port/aswp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/aswp.h -------------------------------------------------------------------------------- /sr_port/base_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/base_frame.c -------------------------------------------------------------------------------- /sr_port/bg_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bg_update.h -------------------------------------------------------------------------------- /sr_port/bit_clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bit_clear.c -------------------------------------------------------------------------------- /sr_port/bit_clear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bit_clear.h -------------------------------------------------------------------------------- /sr_port/bit_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bit_set.c -------------------------------------------------------------------------------- /sr_port/bit_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bit_set.h -------------------------------------------------------------------------------- /sr_port/bm_getfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bm_getfree.c -------------------------------------------------------------------------------- /sr_port/bm_getfree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bm_getfree.h -------------------------------------------------------------------------------- /sr_port/bm_setmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bm_setmap.c -------------------------------------------------------------------------------- /sr_port/bm_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bm_update.h -------------------------------------------------------------------------------- /sr_port/bml_busy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bml_busy.c -------------------------------------------------------------------------------- /sr_port/bml_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bml_free.c -------------------------------------------------------------------------------- /sr_port/bml_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bml_init.c -------------------------------------------------------------------------------- /sr_port/bml_newmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bml_newmap.c -------------------------------------------------------------------------------- /sr_port/bmm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bmm_init.c -------------------------------------------------------------------------------- /sr_port/bool2mint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bool2mint.c -------------------------------------------------------------------------------- /sr_port/bool2mint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bool2mint.h -------------------------------------------------------------------------------- /sr_port/bool2mval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bool2mval.c -------------------------------------------------------------------------------- /sr_port/bool2mval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bool2mval.h -------------------------------------------------------------------------------- /sr_port/bool_andor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bool_andor.c -------------------------------------------------------------------------------- /sr_port/bool_andor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bool_andor.h -------------------------------------------------------------------------------- /sr_port/bool_expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bool_expr.c -------------------------------------------------------------------------------- /sr_port/bool_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bool_init.c -------------------------------------------------------------------------------- /sr_port/bool_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bool_init.h -------------------------------------------------------------------------------- /sr_port/break.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/break.h -------------------------------------------------------------------------------- /sr_port/bt_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bt_get.c -------------------------------------------------------------------------------- /sr_port/bt_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bt_init.c -------------------------------------------------------------------------------- /sr_port/bt_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bt_malloc.c -------------------------------------------------------------------------------- /sr_port/bt_put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bt_put.c -------------------------------------------------------------------------------- /sr_port/bt_refresh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bt_refresh.c -------------------------------------------------------------------------------- /sr_port/buddy_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/buddy_list.c -------------------------------------------------------------------------------- /sr_port/buddy_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/buddy_list.h -------------------------------------------------------------------------------- /sr_port/bx_boollit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bx_boollit.c -------------------------------------------------------------------------------- /sr_port/bx_boolop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bx_boolop.c -------------------------------------------------------------------------------- /sr_port/bx_relop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bx_relop.c -------------------------------------------------------------------------------- /sr_port/bx_tail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/bx_tail.c -------------------------------------------------------------------------------- /sr_port/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cache.h -------------------------------------------------------------------------------- /sr_port/cache_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cache_get.c -------------------------------------------------------------------------------- /sr_port/cache_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cache_init.c -------------------------------------------------------------------------------- /sr_port/cache_put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cache_put.c -------------------------------------------------------------------------------- /sr_port/cachectl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cachectl.h -------------------------------------------------------------------------------- /sr_port/cacheflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cacheflush.c -------------------------------------------------------------------------------- /sr_port/cacheflush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cacheflush.h -------------------------------------------------------------------------------- /sr_port/caller_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/caller_id.c -------------------------------------------------------------------------------- /sr_port/caller_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/caller_id.h -------------------------------------------------------------------------------- /sr_port/callg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/callg.h -------------------------------------------------------------------------------- /sr_port/callg_nc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/callg_nc.c -------------------------------------------------------------------------------- /sr_port/ccp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ccp.h -------------------------------------------------------------------------------- /sr_port/ccpact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ccpact.h -------------------------------------------------------------------------------- /sr_port/ccpact_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ccpact_tab.h -------------------------------------------------------------------------------- /sr_port/cdb_sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cdb_sc.h -------------------------------------------------------------------------------- /sr_port/cdbg_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cdbg_dump.c -------------------------------------------------------------------------------- /sr_port/cdbg_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cdbg_dump.h -------------------------------------------------------------------------------- /sr_port/ceil_log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ceil_log2.c -------------------------------------------------------------------------------- /sr_port/cert_blk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cert_blk.c -------------------------------------------------------------------------------- /sr_port/cert_blk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cert_blk.h -------------------------------------------------------------------------------- /sr_port/cg_var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cg_var.c -------------------------------------------------------------------------------- /sr_port/cg_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cg_var.h -------------------------------------------------------------------------------- /sr_port/cgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cgp.h -------------------------------------------------------------------------------- /sr_port/change_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/change_reg.c -------------------------------------------------------------------------------- /sr_port/change_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/change_reg.h -------------------------------------------------------------------------------- /sr_port/chk2lev.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/chk2lev.m -------------------------------------------------------------------------------- /sr_port/chkop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/chkop.m -------------------------------------------------------------------------------- /sr_port/chktchain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/chktchain.c -------------------------------------------------------------------------------- /sr_port/cli_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cli_port.c -------------------------------------------------------------------------------- /sr_port/cliif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cliif.h -------------------------------------------------------------------------------- /sr_port/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cmd.c -------------------------------------------------------------------------------- /sr_port/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cmd.h -------------------------------------------------------------------------------- /sr_port/cmd_qlf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cmd_qlf.h -------------------------------------------------------------------------------- /sr_port/cmerrors.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cmerrors.msg -------------------------------------------------------------------------------- /sr_port/cmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cmi.h -------------------------------------------------------------------------------- /sr_port/cmidef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cmidef.h -------------------------------------------------------------------------------- /sr_port/cmmdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cmmdef.h -------------------------------------------------------------------------------- /sr_port/code_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/code_gen.c -------------------------------------------------------------------------------- /sr_port/coerce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/coerce.c -------------------------------------------------------------------------------- /sr_port/collseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/collseq.c -------------------------------------------------------------------------------- /sr_port/collseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/collseq.h -------------------------------------------------------------------------------- /sr_port/comline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/comline.h -------------------------------------------------------------------------------- /sr_port/comp_esc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/comp_esc.h -------------------------------------------------------------------------------- /sr_port/comp_fini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/comp_fini.c -------------------------------------------------------------------------------- /sr_port/comp_indr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/comp_indr.c -------------------------------------------------------------------------------- /sr_port/comp_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/comp_init.c -------------------------------------------------------------------------------- /sr_port/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/compiler.h -------------------------------------------------------------------------------- /sr_port/compswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/compswap.h -------------------------------------------------------------------------------- /sr_port/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/copy.h -------------------------------------------------------------------------------- /sr_port/crit_wake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/crit_wake.h -------------------------------------------------------------------------------- /sr_port/cryptdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cryptdef.h -------------------------------------------------------------------------------- /sr_port/cvtparm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cvtparm.c -------------------------------------------------------------------------------- /sr_port/cvtparm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cvtparm.h -------------------------------------------------------------------------------- /sr_port/cvtprot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cvtprot.h -------------------------------------------------------------------------------- /sr_port/cws_insert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/cws_insert.h -------------------------------------------------------------------------------- /sr_port/d.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/d.mpt -------------------------------------------------------------------------------- /sr_port/date.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/date.mpt -------------------------------------------------------------------------------- /sr_port/db_csh_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/db_csh_get.c -------------------------------------------------------------------------------- /sr_port/db_csh_ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/db_csh_ini.c -------------------------------------------------------------------------------- /sr_port/db_csh_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/db_csh_ref.c -------------------------------------------------------------------------------- /sr_port/dbfilop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dbfilop.h -------------------------------------------------------------------------------- /sr_port/devoptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/devoptions.c -------------------------------------------------------------------------------- /sr_port/dfa_calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dfa_calc.c -------------------------------------------------------------------------------- /sr_port/dh.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dh.mpt -------------------------------------------------------------------------------- /sr_port/dm_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dm_read.h -------------------------------------------------------------------------------- /sr_port/dm_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dm_setup.c -------------------------------------------------------------------------------- /sr_port/dm_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dm_setup.h -------------------------------------------------------------------------------- /sr_port/do.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/do.mpt -------------------------------------------------------------------------------- /sr_port/do_patalt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/do_patalt.c -------------------------------------------------------------------------------- /sr_port/do_pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/do_pattern.c -------------------------------------------------------------------------------- /sr_port/do_xform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/do_xform.h -------------------------------------------------------------------------------- /sr_port/dollarx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dollarx.c -------------------------------------------------------------------------------- /sr_port/dollarx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dollarx.h -------------------------------------------------------------------------------- /sr_port/dpgbldir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dpgbldir.c -------------------------------------------------------------------------------- /sr_port/dpgbldir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dpgbldir.h -------------------------------------------------------------------------------- /sr_port/dse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse.h -------------------------------------------------------------------------------- /sr_port/dse.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse.hlp -------------------------------------------------------------------------------- /sr_port/dse_adrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_adrec.c -------------------------------------------------------------------------------- /sr_port/dse_adstar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_adstar.c -------------------------------------------------------------------------------- /sr_port/dse_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_all.c -------------------------------------------------------------------------------- /sr_port/dse_b_dmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_b_dmp.c -------------------------------------------------------------------------------- /sr_port/dse_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_cache.c -------------------------------------------------------------------------------- /sr_port/dse_crit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_crit.c -------------------------------------------------------------------------------- /sr_port/dse_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_data.c -------------------------------------------------------------------------------- /sr_port/dse_dmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_dmp.c -------------------------------------------------------------------------------- /sr_port/dse_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_eval.c -------------------------------------------------------------------------------- /sr_port/dse_exhaus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_exhaus.c -------------------------------------------------------------------------------- /sr_port/dse_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_exit.c -------------------------------------------------------------------------------- /sr_port/dse_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_exit.h -------------------------------------------------------------------------------- /sr_port/dse_f_blk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_f_blk.c -------------------------------------------------------------------------------- /sr_port/dse_f_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_f_free.c -------------------------------------------------------------------------------- /sr_port/dse_f_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_f_key.c -------------------------------------------------------------------------------- /sr_port/dse_f_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_f_reg.c -------------------------------------------------------------------------------- /sr_port/dse_fdmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_fdmp.c -------------------------------------------------------------------------------- /sr_port/dse_flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_flush.c -------------------------------------------------------------------------------- /sr_port/dse_getblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_getblk.c -------------------------------------------------------------------------------- /sr_port/dse_getki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_getki.c -------------------------------------------------------------------------------- /sr_port/dse_integ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_integ.c -------------------------------------------------------------------------------- /sr_port/dse_ksrch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_ksrch.c -------------------------------------------------------------------------------- /sr_port/dse_m_rest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_m_rest.c -------------------------------------------------------------------------------- /sr_port/dse_maps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_maps.c -------------------------------------------------------------------------------- /sr_port/dse_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_order.c -------------------------------------------------------------------------------- /sr_port/dse_over.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_over.c -------------------------------------------------------------------------------- /sr_port/dse_page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_page.c -------------------------------------------------------------------------------- /sr_port/dse_r_dmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_r_dmp.c -------------------------------------------------------------------------------- /sr_port/dse_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_range.c -------------------------------------------------------------------------------- /sr_port/dse_rest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_rest.c -------------------------------------------------------------------------------- /sr_port/dse_rmrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_rmrec.c -------------------------------------------------------------------------------- /sr_port/dse_rmsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_rmsb.c -------------------------------------------------------------------------------- /sr_port/dse_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_save.c -------------------------------------------------------------------------------- /sr_port/dse_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dse_shift.c -------------------------------------------------------------------------------- /sr_port/dsefind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dsefind.h -------------------------------------------------------------------------------- /sr_port/dumptable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dumptable.c -------------------------------------------------------------------------------- /sr_port/dumptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/dumptable.h -------------------------------------------------------------------------------- /sr_port/eb_muldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/eb_muldiv.c -------------------------------------------------------------------------------- /sr_port/eb_muldiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/eb_muldiv.h -------------------------------------------------------------------------------- /sr_port/ebc_xlat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ebc_xlat.c -------------------------------------------------------------------------------- /sr_port/ebc_xlat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ebc_xlat.h -------------------------------------------------------------------------------- /sr_port/ecode_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ecode_add.c -------------------------------------------------------------------------------- /sr_port/ecode_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ecode_get.c -------------------------------------------------------------------------------- /sr_port/ecode_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ecode_init.c -------------------------------------------------------------------------------- /sr_port/ecode_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ecode_set.c -------------------------------------------------------------------------------- /sr_port/emit_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/emit_code.c -------------------------------------------------------------------------------- /sr_port/emit_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/emit_code.h -------------------------------------------------------------------------------- /sr_port/entryref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/entryref.c -------------------------------------------------------------------------------- /sr_port/err_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/err_check.c -------------------------------------------------------------------------------- /sr_port/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/error.h -------------------------------------------------------------------------------- /sr_port/error_trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/error_trap.h -------------------------------------------------------------------------------- /sr_port/eval_expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/eval_expr.c -------------------------------------------------------------------------------- /sr_port/ex_tail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ex_tail.c -------------------------------------------------------------------------------- /sr_port/exfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/exfunc.c -------------------------------------------------------------------------------- /sr_port/exp.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/exp.mpt -------------------------------------------------------------------------------- /sr_port/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/expr.c -------------------------------------------------------------------------------- /sr_port/expratom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/expratom.c -------------------------------------------------------------------------------- /sr_port/expritem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/expritem.c -------------------------------------------------------------------------------- /sr_port/ext2jnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ext2jnl.c -------------------------------------------------------------------------------- /sr_port/f_ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_ascii.c -------------------------------------------------------------------------------- /sr_port/f_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_data.c -------------------------------------------------------------------------------- /sr_port/f_extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_extract.c -------------------------------------------------------------------------------- /sr_port/f_find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_find.c -------------------------------------------------------------------------------- /sr_port/f_fnumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_fnumber.c -------------------------------------------------------------------------------- /sr_port/f_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_get.c -------------------------------------------------------------------------------- /sr_port/f_get1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_get1.c -------------------------------------------------------------------------------- /sr_port/f_incr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_incr.c -------------------------------------------------------------------------------- /sr_port/f_justify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_justify.c -------------------------------------------------------------------------------- /sr_port/f_length.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_length.c -------------------------------------------------------------------------------- /sr_port/f_mint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_mint.c -------------------------------------------------------------------------------- /sr_port/f_mstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_mstr.c -------------------------------------------------------------------------------- /sr_port/f_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_name.c -------------------------------------------------------------------------------- /sr_port/f_next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_next.c -------------------------------------------------------------------------------- /sr_port/f_one_mval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_one_mval.c -------------------------------------------------------------------------------- /sr_port/f_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_order.c -------------------------------------------------------------------------------- /sr_port/f_order1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_order1.c -------------------------------------------------------------------------------- /sr_port/f_qlength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_qlength.c -------------------------------------------------------------------------------- /sr_port/f_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_query.c -------------------------------------------------------------------------------- /sr_port/f_query1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_query1.c -------------------------------------------------------------------------------- /sr_port/f_reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_reverse.c -------------------------------------------------------------------------------- /sr_port/f_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_select.c -------------------------------------------------------------------------------- /sr_port/f_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_stack.c -------------------------------------------------------------------------------- /sr_port/f_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_text.c -------------------------------------------------------------------------------- /sr_port/f_two_mval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_two_mval.c -------------------------------------------------------------------------------- /sr_port/f_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_view.c -------------------------------------------------------------------------------- /sr_port/f_zahandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zahandle.c -------------------------------------------------------------------------------- /sr_port/f_zcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zcall.c -------------------------------------------------------------------------------- /sr_port/f_zchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zchar.c -------------------------------------------------------------------------------- /sr_port/f_zcollate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zcollate.c -------------------------------------------------------------------------------- /sr_port/f_zconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zconvert.c -------------------------------------------------------------------------------- /sr_port/f_zdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zdate.c -------------------------------------------------------------------------------- /sr_port/f_zgetsyi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zgetsyi.c -------------------------------------------------------------------------------- /sr_port/f_zjobexam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zjobexam.c -------------------------------------------------------------------------------- /sr_port/f_zparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zparse.c -------------------------------------------------------------------------------- /sr_port/f_zpeek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zpeek.c -------------------------------------------------------------------------------- /sr_port/f_zqgblmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zqgblmod.c -------------------------------------------------------------------------------- /sr_port/f_zsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zsearch.c -------------------------------------------------------------------------------- /sr_port/f_zsigproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zsigproc.c -------------------------------------------------------------------------------- /sr_port/f_zsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zsocket.c -------------------------------------------------------------------------------- /sr_port/f_ztrigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_ztrigger.c -------------------------------------------------------------------------------- /sr_port/f_ztrnlnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_ztrnlnm.c -------------------------------------------------------------------------------- /sr_port/f_zwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zwidth.c -------------------------------------------------------------------------------- /sr_port/f_zwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zwrite.c -------------------------------------------------------------------------------- /sr_port/f_zyhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zyhash.c -------------------------------------------------------------------------------- /sr_port/f_zysuffix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/f_zysuffix.c -------------------------------------------------------------------------------- /sr_port/fao_parm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/fao_parm.h -------------------------------------------------------------------------------- /sr_port/fgncal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/fgncal.h -------------------------------------------------------------------------------- /sr_port/fileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/fileinfo.h -------------------------------------------------------------------------------- /sr_port/five_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/five_bit.c -------------------------------------------------------------------------------- /sr_port/five_bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/five_bit.h -------------------------------------------------------------------------------- /sr_port/fix_pages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/fix_pages.h -------------------------------------------------------------------------------- /sr_port/fl.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/fl.mpt -------------------------------------------------------------------------------- /sr_port/flt_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/flt_mod.c -------------------------------------------------------------------------------- /sr_port/flt_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/flt_mod.h -------------------------------------------------------------------------------- /sr_port/flush_jmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/flush_jmp.c -------------------------------------------------------------------------------- /sr_port/flush_jmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/flush_jmp.h -------------------------------------------------------------------------------- /sr_port/flush_pio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/flush_pio.c -------------------------------------------------------------------------------- /sr_port/fnname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/fnname.h -------------------------------------------------------------------------------- /sr_port/fnorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/fnorder.h -------------------------------------------------------------------------------- /sr_port/fnpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/fnpc.h -------------------------------------------------------------------------------- /sr_port/fnpc_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/fnpc_stats.c -------------------------------------------------------------------------------- /sr_port/fntext_ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/fntext_ch.c -------------------------------------------------------------------------------- /sr_port/format2zwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/format2zwr.c -------------------------------------------------------------------------------- /sr_port/freecnt.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/freecnt.mpt -------------------------------------------------------------------------------- /sr_port/fullbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/fullbool.h -------------------------------------------------------------------------------- /sr_port/funsvn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/funsvn.h -------------------------------------------------------------------------------- /sr_port/g.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/g.mpt -------------------------------------------------------------------------------- /sr_port/gbldef.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gbldef.mpt -------------------------------------------------------------------------------- /sr_port/gbldefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gbldefs.c -------------------------------------------------------------------------------- /sr_port/gc.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gc.mpt -------------------------------------------------------------------------------- /sr_port/gce.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gce.mpt -------------------------------------------------------------------------------- /sr_port/gd.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gd.mpt -------------------------------------------------------------------------------- /sr_port/gde.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gde.hlp -------------------------------------------------------------------------------- /sr_port/gde.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gde.m -------------------------------------------------------------------------------- /sr_port/gdeadd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdeadd.m -------------------------------------------------------------------------------- /sr_port/gdechang.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdechang.m -------------------------------------------------------------------------------- /sr_port/gdedelet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdedelet.m -------------------------------------------------------------------------------- /sr_port/gdeexit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdeexit.m -------------------------------------------------------------------------------- /sr_port/gdehelp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdehelp.m -------------------------------------------------------------------------------- /sr_port/gdeinit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdeinit.m -------------------------------------------------------------------------------- /sr_port/gdelocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdelocks.m -------------------------------------------------------------------------------- /sr_port/gdelog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdelog.m -------------------------------------------------------------------------------- /sr_port/gdemap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdemap.m -------------------------------------------------------------------------------- /sr_port/gdemsgin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdemsgin.m -------------------------------------------------------------------------------- /sr_port/gdeparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdeparse.m -------------------------------------------------------------------------------- /sr_port/gdequit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdequit.m -------------------------------------------------------------------------------- /sr_port/gderenam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gderenam.m -------------------------------------------------------------------------------- /sr_port/gdescan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdescan.m -------------------------------------------------------------------------------- /sr_port/gdesetgd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdesetgd.m -------------------------------------------------------------------------------- /sr_port/gdeshow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdeshow.m -------------------------------------------------------------------------------- /sr_port/gdespawn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdespawn.m -------------------------------------------------------------------------------- /sr_port/gdetempl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdetempl.m -------------------------------------------------------------------------------- /sr_port/gdsbgtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdsbgtr.h -------------------------------------------------------------------------------- /sr_port/gdsblk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdsblk.h -------------------------------------------------------------------------------- /sr_port/gdsblkops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdsblkops.h -------------------------------------------------------------------------------- /sr_port/gdsbml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdsbml.h -------------------------------------------------------------------------------- /sr_port/gdsbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdsbt.h -------------------------------------------------------------------------------- /sr_port/gdscc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdscc.h -------------------------------------------------------------------------------- /sr_port/gdsdbver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdsdbver.h -------------------------------------------------------------------------------- /sr_port/gdsfhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdsfhead.h -------------------------------------------------------------------------------- /sr_port/gdsfilext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdsfilext.h -------------------------------------------------------------------------------- /sr_port/gdskill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdskill.h -------------------------------------------------------------------------------- /sr_port/gdsroot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gdsroot.h -------------------------------------------------------------------------------- /sr_port/ged.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ged.mpt -------------------------------------------------------------------------------- /sr_port/gendash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gendash.m -------------------------------------------------------------------------------- /sr_port/genout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/genout.m -------------------------------------------------------------------------------- /sr_port/get_lmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/get_lmap.c -------------------------------------------------------------------------------- /sr_port/get_mladdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/get_mladdr.c -------------------------------------------------------------------------------- /sr_port/get_mmseg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/get_mmseg.c -------------------------------------------------------------------------------- /sr_port/get_mvaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/get_mvaddr.c -------------------------------------------------------------------------------- /sr_port/get_root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/get_root.h -------------------------------------------------------------------------------- /sr_port/getjobname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/getjobname.c -------------------------------------------------------------------------------- /sr_port/getjobname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/getjobname.h -------------------------------------------------------------------------------- /sr_port/getjobnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/getjobnum.h -------------------------------------------------------------------------------- /sr_port/getprime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/getprime.c -------------------------------------------------------------------------------- /sr_port/getstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/getstorage.h -------------------------------------------------------------------------------- /sr_port/getzdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/getzdir.c -------------------------------------------------------------------------------- /sr_port/getzdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/getzdir.h -------------------------------------------------------------------------------- /sr_port/getzmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/getzmode.h -------------------------------------------------------------------------------- /sr_port/gi.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gi.mpt -------------------------------------------------------------------------------- /sr_port/global_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/global_map.c -------------------------------------------------------------------------------- /sr_port/global_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/global_map.h -------------------------------------------------------------------------------- /sr_port/glvn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/glvn.c -------------------------------------------------------------------------------- /sr_port/glvn_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/glvn_pool.c -------------------------------------------------------------------------------- /sr_port/glvn_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/glvn_pool.h -------------------------------------------------------------------------------- /sr_port/go.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/go.mpt -------------------------------------------------------------------------------- /sr_port/goframes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/goframes.c -------------------------------------------------------------------------------- /sr_port/golevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/golevel.h -------------------------------------------------------------------------------- /sr_port/gsel.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gsel.mpt -------------------------------------------------------------------------------- /sr_port/gtm_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_assert.c -------------------------------------------------------------------------------- /sr_port/gtm_bintim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_bintim.h -------------------------------------------------------------------------------- /sr_port/gtm_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_ctype.h -------------------------------------------------------------------------------- /sr_port/gtm_dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_dirent.h -------------------------------------------------------------------------------- /sr_port/gtm_fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_fcntl.h -------------------------------------------------------------------------------- /sr_port/gtm_fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_fetch.c -------------------------------------------------------------------------------- /sr_port/gtm_ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_ffs.c -------------------------------------------------------------------------------- /sr_port/gtm_ffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_ffs.h -------------------------------------------------------------------------------- /sr_port/gtm_inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_inet.h -------------------------------------------------------------------------------- /sr_port/gtm_ipv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_ipv6.h -------------------------------------------------------------------------------- /sr_port/gtm_pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_pwd.h -------------------------------------------------------------------------------- /sr_port/gtm_repl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_repl.h -------------------------------------------------------------------------------- /sr_port/gtm_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_stat.h -------------------------------------------------------------------------------- /sr_port/gtm_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_time.h -------------------------------------------------------------------------------- /sr_port/gtm_un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_un.h -------------------------------------------------------------------------------- /sr_port/gtm_wake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtm_wake.h -------------------------------------------------------------------------------- /sr_port/gtmctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtmctype.h -------------------------------------------------------------------------------- /sr_port/gtmmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gtmmsg.h -------------------------------------------------------------------------------- /sr_port/gv_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gv_match.c -------------------------------------------------------------------------------- /sr_port/gv_match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gv_match.h -------------------------------------------------------------------------------- /sr_port/gvcmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gvcmx.h -------------------------------------------------------------------------------- /sr_port/gvinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gvinit.c -------------------------------------------------------------------------------- /sr_port/gvn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gvn.c -------------------------------------------------------------------------------- /sr_port/gvn2gds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gvn2gds.c -------------------------------------------------------------------------------- /sr_port/gvn2gds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gvn2gds.h -------------------------------------------------------------------------------- /sr_port/gvstrsub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/gvstrsub.h -------------------------------------------------------------------------------- /sr_port/h.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/h.mpt -------------------------------------------------------------------------------- /sr_port/hashtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/hashtab.h -------------------------------------------------------------------------------- /sr_port/hd.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/hd.mpt -------------------------------------------------------------------------------- /sr_port/ho.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ho.mpt -------------------------------------------------------------------------------- /sr_port/i2asc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/i2asc.c -------------------------------------------------------------------------------- /sr_port/i2hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/i2hex.c -------------------------------------------------------------------------------- /sr_port/ind_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ind_code.c -------------------------------------------------------------------------------- /sr_port/indir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/indir.h -------------------------------------------------------------------------------- /sr_port/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/io.h -------------------------------------------------------------------------------- /sr_port/io_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/io_init.c -------------------------------------------------------------------------------- /sr_port/ionl_use.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ionl_use.c -------------------------------------------------------------------------------- /sr_port/iop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/iop.h -------------------------------------------------------------------------------- /sr_port/iotimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/iotimer.h -------------------------------------------------------------------------------- /sr_port/ious_use.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ious_use.c -------------------------------------------------------------------------------- /sr_port/iousdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/iousdef.h -------------------------------------------------------------------------------- /sr_port/is_equ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/is_equ.c -------------------------------------------------------------------------------- /sr_port/is_equ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/is_equ.h -------------------------------------------------------------------------------- /sr_port/is_gdid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/is_gdid.h -------------------------------------------------------------------------------- /sr_port/is_ident.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/is_ident.c -------------------------------------------------------------------------------- /sr_port/jmp_opto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/jmp_opto.c -------------------------------------------------------------------------------- /sr_port/jmp_opto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/jmp_opto.h -------------------------------------------------------------------------------- /sr_port/jnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/jnl.h -------------------------------------------------------------------------------- /sr_port/jnl2ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/jnl2ext.c -------------------------------------------------------------------------------- /sr_port/jnl_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/jnl_wait.c -------------------------------------------------------------------------------- /sr_port/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/job.h -------------------------------------------------------------------------------- /sr_port/job_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/job_addr.c -------------------------------------------------------------------------------- /sr_port/job_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/job_addr.h -------------------------------------------------------------------------------- /sr_port/lb_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lb_init.c -------------------------------------------------------------------------------- /sr_port/lb_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lb_init.h -------------------------------------------------------------------------------- /sr_port/lcase.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lcase.mpt -------------------------------------------------------------------------------- /sr_port/lckclr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lckclr.c -------------------------------------------------------------------------------- /sr_port/lckclr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lckclr.h -------------------------------------------------------------------------------- /sr_port/lclcol.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lclcol.mpt -------------------------------------------------------------------------------- /sr_port/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/line.c -------------------------------------------------------------------------------- /sr_port/linetail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/linetail.c -------------------------------------------------------------------------------- /sr_port/linktrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/linktrc.h -------------------------------------------------------------------------------- /sr_port/lke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lke.h -------------------------------------------------------------------------------- /sr_port/lke.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lke.hlp -------------------------------------------------------------------------------- /sr_port/lke_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lke_exit.c -------------------------------------------------------------------------------- /sr_port/lke_show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lke_show.c -------------------------------------------------------------------------------- /sr_port/lkglvn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lkglvn.c -------------------------------------------------------------------------------- /sr_port/loadop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/loadop.m -------------------------------------------------------------------------------- /sr_port/loadvx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/loadvx.m -------------------------------------------------------------------------------- /sr_port/locklits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/locklits.h -------------------------------------------------------------------------------- /sr_port/longset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/longset.h -------------------------------------------------------------------------------- /sr_port/lref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lref.c -------------------------------------------------------------------------------- /sr_port/lv_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lv_kill.c -------------------------------------------------------------------------------- /sr_port/lv_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lv_tree.c -------------------------------------------------------------------------------- /sr_port/lv_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lv_tree.h -------------------------------------------------------------------------------- /sr_port/lv_val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lv_val.h -------------------------------------------------------------------------------- /sr_port/lvn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/lvn.c -------------------------------------------------------------------------------- /sr_port/m_break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_break.c -------------------------------------------------------------------------------- /sr_port/m_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_close.c -------------------------------------------------------------------------------- /sr_port/m_do.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_do.c -------------------------------------------------------------------------------- /sr_port/m_else.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_else.c -------------------------------------------------------------------------------- /sr_port/m_for.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_for.c -------------------------------------------------------------------------------- /sr_port/m_for_ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_for_ch.c -------------------------------------------------------------------------------- /sr_port/m_goto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_goto.c -------------------------------------------------------------------------------- /sr_port/m_halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_halt.c -------------------------------------------------------------------------------- /sr_port/m_hang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_hang.c -------------------------------------------------------------------------------- /sr_port/m_hcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_hcmd.c -------------------------------------------------------------------------------- /sr_port/m_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_if.c -------------------------------------------------------------------------------- /sr_port/m_job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_job.c -------------------------------------------------------------------------------- /sr_port/m_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_kill.c -------------------------------------------------------------------------------- /sr_port/m_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_lock.c -------------------------------------------------------------------------------- /sr_port/m_merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_merge.c -------------------------------------------------------------------------------- /sr_port/m_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_new.c -------------------------------------------------------------------------------- /sr_port/m_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_open.c -------------------------------------------------------------------------------- /sr_port/m_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_quit.c -------------------------------------------------------------------------------- /sr_port/m_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_read.c -------------------------------------------------------------------------------- /sr_port/m_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_set.c -------------------------------------------------------------------------------- /sr_port/m_tstart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_tstart.c -------------------------------------------------------------------------------- /sr_port/m_use.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_use.c -------------------------------------------------------------------------------- /sr_port/m_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_view.c -------------------------------------------------------------------------------- /sr_port/m_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_write.c -------------------------------------------------------------------------------- /sr_port/m_xecute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_xecute.c -------------------------------------------------------------------------------- /sr_port/m_zbreak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_zbreak.c -------------------------------------------------------------------------------- /sr_port/m_zedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_zedit.c -------------------------------------------------------------------------------- /sr_port/m_zgoto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_zgoto.c -------------------------------------------------------------------------------- /sr_port/m_zhalt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_zhalt.c -------------------------------------------------------------------------------- /sr_port/m_zhelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_zhelp.c -------------------------------------------------------------------------------- /sr_port/m_zlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_zlink.c -------------------------------------------------------------------------------- /sr_port/m_zprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_zprint.c -------------------------------------------------------------------------------- /sr_port/m_zshow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_zshow.c -------------------------------------------------------------------------------- /sr_port/m_zstep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_zstep.c -------------------------------------------------------------------------------- /sr_port/m_zwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/m_zwrite.c -------------------------------------------------------------------------------- /sr_port/matchc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/matchc.c -------------------------------------------------------------------------------- /sr_port/matchc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/matchc.h -------------------------------------------------------------------------------- /sr_port/mcalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mcalloc.c -------------------------------------------------------------------------------- /sr_port/mcfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mcfree.c -------------------------------------------------------------------------------- /sr_port/md5hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/md5hash.c -------------------------------------------------------------------------------- /sr_port/md5hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/md5hash.h -------------------------------------------------------------------------------- /sr_port/mdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mdef.h -------------------------------------------------------------------------------- /sr_port/mdq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mdq.h -------------------------------------------------------------------------------- /sr_port/memvcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/memvcmp.c -------------------------------------------------------------------------------- /sr_port/min_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/min_max.h -------------------------------------------------------------------------------- /sr_port/mlk_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mlk_lock.c -------------------------------------------------------------------------------- /sr_port/mlk_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mlk_lock.h -------------------------------------------------------------------------------- /sr_port/mlk_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mlk_ops.h -------------------------------------------------------------------------------- /sr_port/mlkdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mlkdef.h -------------------------------------------------------------------------------- /sr_port/mm_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mm_read.c -------------------------------------------------------------------------------- /sr_port/mm_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mm_read.h -------------------------------------------------------------------------------- /sr_port/mmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mmemory.h -------------------------------------------------------------------------------- /sr_port/mmseg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mmseg.h -------------------------------------------------------------------------------- /sr_port/movtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/movtc.c -------------------------------------------------------------------------------- /sr_port/movtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/movtc.h -------------------------------------------------------------------------------- /sr_port/mpiece.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mpiece.mpt -------------------------------------------------------------------------------- /sr_port/mprof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mprof.h -------------------------------------------------------------------------------- /sr_port/msg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/msg.m -------------------------------------------------------------------------------- /sr_port/mtables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mtables.c -------------------------------------------------------------------------------- /sr_port/mtables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mtables.h -------------------------------------------------------------------------------- /sr_port/mu_clsce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mu_clsce.c -------------------------------------------------------------------------------- /sr_port/mu_gvis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mu_gvis.h -------------------------------------------------------------------------------- /sr_port/mu_reorg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mu_reorg.c -------------------------------------------------------------------------------- /sr_port/mu_reorg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mu_reorg.h -------------------------------------------------------------------------------- /sr_port/mu_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mu_split.c -------------------------------------------------------------------------------- /sr_port/mubclnup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mubclnup.c -------------------------------------------------------------------------------- /sr_port/muextr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/muextr.h -------------------------------------------------------------------------------- /sr_port/mumps.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mumps.hlp -------------------------------------------------------------------------------- /sr_port/mupint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mupint.h -------------------------------------------------------------------------------- /sr_port/mupip.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mupip.hlp -------------------------------------------------------------------------------- /sr_port/muprec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/muprec.h -------------------------------------------------------------------------------- /sr_port/mur_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mur_init.c -------------------------------------------------------------------------------- /sr_port/murest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/murest.h -------------------------------------------------------------------------------- /sr_port/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mutex.h -------------------------------------------------------------------------------- /sr_port/mv_stent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mv_stent.h -------------------------------------------------------------------------------- /sr_port/mval2fao.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mval2fao.c -------------------------------------------------------------------------------- /sr_port/mval2fao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mval2fao.h -------------------------------------------------------------------------------- /sr_port/mval2num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mval2num.c -------------------------------------------------------------------------------- /sr_port/mval2num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mval2num.h -------------------------------------------------------------------------------- /sr_port/mval_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mval_lex.c -------------------------------------------------------------------------------- /sr_port/mvalconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mvalconv.c -------------------------------------------------------------------------------- /sr_port/mvalconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/mvalconv.h -------------------------------------------------------------------------------- /sr_port/n2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/n2s.c -------------------------------------------------------------------------------- /sr_port/namelook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/namelook.c -------------------------------------------------------------------------------- /sr_port/namelook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/namelook.h -------------------------------------------------------------------------------- /sr_port/nref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/nref.c -------------------------------------------------------------------------------- /sr_port/numcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/numcmp.c -------------------------------------------------------------------------------- /sr_port/numcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/numcmp.h -------------------------------------------------------------------------------- /sr_port/obj_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/obj_file.h -------------------------------------------------------------------------------- /sr_port/obj_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/obj_gen.h -------------------------------------------------------------------------------- /sr_port/objlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/objlabel.h -------------------------------------------------------------------------------- /sr_port/oc_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/oc_tab.c -------------------------------------------------------------------------------- /sr_port/od.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/od.mpt -------------------------------------------------------------------------------- /sr_port/oh.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/oh.mpt -------------------------------------------------------------------------------- /sr_port/op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op.h -------------------------------------------------------------------------------- /sr_port/op_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_add.c -------------------------------------------------------------------------------- /sr_port/op_break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_break.c -------------------------------------------------------------------------------- /sr_port/op_cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_cat.c -------------------------------------------------------------------------------- /sr_port/op_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_close.c -------------------------------------------------------------------------------- /sr_port/op_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_div.c -------------------------------------------------------------------------------- /sr_port/op_dmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_dmode.c -------------------------------------------------------------------------------- /sr_port/op_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_exp.c -------------------------------------------------------------------------------- /sr_port/op_fnj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_fnj2.c -------------------------------------------------------------------------------- /sr_port/op_fnj3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_fnj3.c -------------------------------------------------------------------------------- /sr_port/op_fno2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_fno2.c -------------------------------------------------------------------------------- /sr_port/op_fnq2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_fnq2.c -------------------------------------------------------------------------------- /sr_port/op_fnzm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_fnzm.c -------------------------------------------------------------------------------- /sr_port/op_fnzp1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_fnzp1.c -------------------------------------------------------------------------------- /sr_port/op_gvget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_gvget.c -------------------------------------------------------------------------------- /sr_port/op_gvo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_gvo2.c -------------------------------------------------------------------------------- /sr_port/op_gvput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_gvput.c -------------------------------------------------------------------------------- /sr_port/op_gvq2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_gvq2.c -------------------------------------------------------------------------------- /sr_port/op_hang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_hang.c -------------------------------------------------------------------------------- /sr_port/op_idiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_idiv.c -------------------------------------------------------------------------------- /sr_port/op_indo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_indo2.c -------------------------------------------------------------------------------- /sr_port/op_indq2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_indq2.c -------------------------------------------------------------------------------- /sr_port/op_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_kill.c -------------------------------------------------------------------------------- /sr_port/op_litc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_litc.c -------------------------------------------------------------------------------- /sr_port/op_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_lock.c -------------------------------------------------------------------------------- /sr_port/op_lock2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_lock2.c -------------------------------------------------------------------------------- /sr_port/op_merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_merge.c -------------------------------------------------------------------------------- /sr_port/op_merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_merge.h -------------------------------------------------------------------------------- /sr_port/op_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_mul.c -------------------------------------------------------------------------------- /sr_port/op_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_open.c -------------------------------------------------------------------------------- /sr_port/op_rdone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_rdone.c -------------------------------------------------------------------------------- /sr_port/op_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_read.c -------------------------------------------------------------------------------- /sr_port/op_svget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_svget.c -------------------------------------------------------------------------------- /sr_port/op_svput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_svput.c -------------------------------------------------------------------------------- /sr_port/op_use.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_use.c -------------------------------------------------------------------------------- /sr_port/op_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_view.c -------------------------------------------------------------------------------- /sr_port/op_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_write.c -------------------------------------------------------------------------------- /sr_port/op_wteol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_wteol.c -------------------------------------------------------------------------------- /sr_port/op_wtff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_wtff.c -------------------------------------------------------------------------------- /sr_port/op_wtone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_wtone.c -------------------------------------------------------------------------------- /sr_port/op_wttab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_wttab.c -------------------------------------------------------------------------------- /sr_port/op_xkill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_xkill.c -------------------------------------------------------------------------------- /sr_port/op_xnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_xnew.c -------------------------------------------------------------------------------- /sr_port/op_zcont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_zcont.c -------------------------------------------------------------------------------- /sr_port/op_zg1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_zg1.c -------------------------------------------------------------------------------- /sr_port/op_zgoto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_zgoto.c -------------------------------------------------------------------------------- /sr_port/op_zhalt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_zhalt.c -------------------------------------------------------------------------------- /sr_port/op_zshow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_zshow.c -------------------------------------------------------------------------------- /sr_port/op_zstep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/op_zstep.c -------------------------------------------------------------------------------- /sr_port/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/opcode.h -------------------------------------------------------------------------------- /sr_port/patcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/patcode.h -------------------------------------------------------------------------------- /sr_port/patstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/patstr.c -------------------------------------------------------------------------------- /sr_port/pattab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/pattab.c -------------------------------------------------------------------------------- /sr_port/put_cdlt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/put_cdlt.c -------------------------------------------------------------------------------- /sr_port/put_ilit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/put_ilit.c -------------------------------------------------------------------------------- /sr_port/put_indr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/put_indr.c -------------------------------------------------------------------------------- /sr_port/put_lit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/put_lit.c -------------------------------------------------------------------------------- /sr_port/put_mfun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/put_mfun.c -------------------------------------------------------------------------------- /sr_port/put_mlab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/put_mlab.c -------------------------------------------------------------------------------- /sr_port/put_mnxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/put_mnxl.c -------------------------------------------------------------------------------- /sr_port/put_mvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/put_mvar.c -------------------------------------------------------------------------------- /sr_port/put_ocnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/put_ocnt.c -------------------------------------------------------------------------------- /sr_port/put_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/put_str.c -------------------------------------------------------------------------------- /sr_port/put_tjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/put_tjmp.c -------------------------------------------------------------------------------- /sr_port/put_tnxt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/put_tnxt.c -------------------------------------------------------------------------------- /sr_port/put_tref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/put_tref.c -------------------------------------------------------------------------------- /sr_port/put_tsiz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/put_tsiz.c -------------------------------------------------------------------------------- /sr_port/rc_oflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/rc_oflow.h -------------------------------------------------------------------------------- /sr_port/rce.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/rce.mpt -------------------------------------------------------------------------------- /sr_port/rd.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/rd.mpt -------------------------------------------------------------------------------- /sr_port/real_len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/real_len.c -------------------------------------------------------------------------------- /sr_port/real_len.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/real_len.h -------------------------------------------------------------------------------- /sr_port/relqop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/relqop.h -------------------------------------------------------------------------------- /sr_port/relqueop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/relqueop.c -------------------------------------------------------------------------------- /sr_port/repl_ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/repl_ctl.h -------------------------------------------------------------------------------- /sr_port/repl_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/repl_dbg.h -------------------------------------------------------------------------------- /sr_port/repl_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/repl_log.h -------------------------------------------------------------------------------- /sr_port/replgbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/replgbl.h -------------------------------------------------------------------------------- /sr_port/restrict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/restrict.c -------------------------------------------------------------------------------- /sr_port/restrict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/restrict.h -------------------------------------------------------------------------------- /sr_port/ri.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ri.mpt -------------------------------------------------------------------------------- /sr_port/ro.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ro.mpt -------------------------------------------------------------------------------- /sr_port/rse.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/rse.mpt -------------------------------------------------------------------------------- /sr_port/rsel.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/rsel.mpt -------------------------------------------------------------------------------- /sr_port/rwformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/rwformat.c -------------------------------------------------------------------------------- /sr_port/rwformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/rwformat.h -------------------------------------------------------------------------------- /sr_port/s2n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/s2n.c -------------------------------------------------------------------------------- /sr_port/s2pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/s2pool.c -------------------------------------------------------------------------------- /sr_port/send_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/send_msg.h -------------------------------------------------------------------------------- /sr_port/setzdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/setzdir.c -------------------------------------------------------------------------------- /sr_port/setzdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/setzdir.h -------------------------------------------------------------------------------- /sr_port/sgnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/sgnl.h -------------------------------------------------------------------------------- /sr_port/shmpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/shmpool.c -------------------------------------------------------------------------------- /sr_port/shmpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/shmpool.h -------------------------------------------------------------------------------- /sr_port/shuffq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/shuffq.c -------------------------------------------------------------------------------- /sr_port/skpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/skpc.c -------------------------------------------------------------------------------- /sr_port/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/sort.h -------------------------------------------------------------------------------- /sr_port/sqroot.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/sqroot.mpt -------------------------------------------------------------------------------- /sr_port/srcline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/srcline.h -------------------------------------------------------------------------------- /sr_port/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/startup.h -------------------------------------------------------------------------------- /sr_port/stp_gcol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/stp_gcol.c -------------------------------------------------------------------------------- /sr_port/stp_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/stp_init.c -------------------------------------------------------------------------------- /sr_port/stp_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/stp_move.c -------------------------------------------------------------------------------- /sr_port/sub2stbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/sub2stbl.c -------------------------------------------------------------------------------- /sr_port/svnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/svnames.h -------------------------------------------------------------------------------- /sr_port/symbinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/symbinit.c -------------------------------------------------------------------------------- /sr_port/t.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t.mpt -------------------------------------------------------------------------------- /sr_port/t_abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_abort.c -------------------------------------------------------------------------------- /sr_port/t_abort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_abort.h -------------------------------------------------------------------------------- /sr_port/t_begin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_begin.c -------------------------------------------------------------------------------- /sr_port/t_begin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_begin.h -------------------------------------------------------------------------------- /sr_port/t_ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_ch.c -------------------------------------------------------------------------------- /sr_port/t_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_create.c -------------------------------------------------------------------------------- /sr_port/t_create.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_create.h -------------------------------------------------------------------------------- /sr_port/t_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_end.c -------------------------------------------------------------------------------- /sr_port/t_end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_end.h -------------------------------------------------------------------------------- /sr_port/t_qread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_qread.c -------------------------------------------------------------------------------- /sr_port/t_qread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_qread.h -------------------------------------------------------------------------------- /sr_port/t_retry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_retry.c -------------------------------------------------------------------------------- /sr_port/t_retry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_retry.h -------------------------------------------------------------------------------- /sr_port/t_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_write.c -------------------------------------------------------------------------------- /sr_port/t_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/t_write.h -------------------------------------------------------------------------------- /sr_port/tcp_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/tcp_open.c -------------------------------------------------------------------------------- /sr_port/testpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/testpt.h -------------------------------------------------------------------------------- /sr_port/ti.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ti.mpt -------------------------------------------------------------------------------- /sr_port/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/timers.h -------------------------------------------------------------------------------- /sr_port/tnxtarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/tnxtarg.c -------------------------------------------------------------------------------- /sr_port/to.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/to.mpt -------------------------------------------------------------------------------- /sr_port/toktyp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/toktyp.h -------------------------------------------------------------------------------- /sr_port/tp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/tp.h -------------------------------------------------------------------------------- /sr_port/tp_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/tp_frame.h -------------------------------------------------------------------------------- /sr_port/tp_hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/tp_hist.c -------------------------------------------------------------------------------- /sr_port/tp_tend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/tp_tend.c -------------------------------------------------------------------------------- /sr_port/tpdefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/tpdefs.c -------------------------------------------------------------------------------- /sr_port/trim.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/trim.mpt -------------------------------------------------------------------------------- /sr_port/tripinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/tripinit.c -------------------------------------------------------------------------------- /sr_port/tttgen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/tttgen.m -------------------------------------------------------------------------------- /sr_port/tttscan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/tttscan.m -------------------------------------------------------------------------------- /sr_port/ucase.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/ucase.mpt -------------------------------------------------------------------------------- /sr_port/underr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/underr.c -------------------------------------------------------------------------------- /sr_port/undx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/undx.c -------------------------------------------------------------------------------- /sr_port/undx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/undx.h -------------------------------------------------------------------------------- /sr_port/updproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/updproc.c -------------------------------------------------------------------------------- /sr_port/updproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/updproc.h -------------------------------------------------------------------------------- /sr_port/urx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/urx.h -------------------------------------------------------------------------------- /sr_port/urx_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/urx_add.c -------------------------------------------------------------------------------- /sr_port/urx_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/urx_free.c -------------------------------------------------------------------------------- /sr_port/urxsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/urxsp.h -------------------------------------------------------------------------------- /sr_port/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/util.h -------------------------------------------------------------------------------- /sr_port/util_ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/util_ch.c -------------------------------------------------------------------------------- /sr_port/v010_jnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/v010_jnl.h -------------------------------------------------------------------------------- /sr_port/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/view.h -------------------------------------------------------------------------------- /sr_port/viewkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/viewkeys.c -------------------------------------------------------------------------------- /sr_port/viewtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/viewtab.h -------------------------------------------------------------------------------- /sr_port/vxi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/vxi.h -------------------------------------------------------------------------------- /sr_port/vxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/vxt.h -------------------------------------------------------------------------------- /sr_port/wake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/wake.c -------------------------------------------------------------------------------- /sr_port/wake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/wake.h -------------------------------------------------------------------------------- /sr_port/walktree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/walktree.c -------------------------------------------------------------------------------- /sr_port/wcs_flu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/wcs_flu.h -------------------------------------------------------------------------------- /sr_port/xcmd.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/xcmd.mpt -------------------------------------------------------------------------------- /sr_port/xfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/xfer.h -------------------------------------------------------------------------------- /sr_port/zbreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/zbreak.h -------------------------------------------------------------------------------- /sr_port/zco_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/zco_init.c -------------------------------------------------------------------------------- /sr_port/zco_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/zco_init.h -------------------------------------------------------------------------------- /sr_port/zr_find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/zr_find.c -------------------------------------------------------------------------------- /sr_port/zr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/zr_init.c -------------------------------------------------------------------------------- /sr_port/zro_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/zro_init.c -------------------------------------------------------------------------------- /sr_port/zshow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/zshow.h -------------------------------------------------------------------------------- /sr_port/zshow_ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/zshow_ch.c -------------------------------------------------------------------------------- /sr_port/zsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/zsocket.h -------------------------------------------------------------------------------- /sr_port/zstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/zstep.h -------------------------------------------------------------------------------- /sr_port/zwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port/zwrite.h -------------------------------------------------------------------------------- /sr_port_cm/gtcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port_cm/gtcmd.h -------------------------------------------------------------------------------- /sr_port_cm/gtcml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port_cm/gtcml.h -------------------------------------------------------------------------------- /sr_port_cm/gvcmz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_port_cm/gvcmz.h -------------------------------------------------------------------------------- /sr_unix/aio_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/aio_shim.c -------------------------------------------------------------------------------- /sr_unix/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ast.h -------------------------------------------------------------------------------- /sr_unix/bin_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/bin_load.c -------------------------------------------------------------------------------- /sr_unix/bit_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/bit_op.h -------------------------------------------------------------------------------- /sr_unix/callg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/callg.c -------------------------------------------------------------------------------- /sr_unix/ce_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ce_init.c -------------------------------------------------------------------------------- /sr_unix/cenable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/cenable.c -------------------------------------------------------------------------------- /sr_unix/cenable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/cenable.h -------------------------------------------------------------------------------- /sr_unix/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/cli.c -------------------------------------------------------------------------------- /sr_unix/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/cli.h -------------------------------------------------------------------------------- /sr_unix/cli_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/cli_lex.c -------------------------------------------------------------------------------- /sr_unix/cmidefsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/cmidefsp.h -------------------------------------------------------------------------------- /sr_unix/comque.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/comque.csh -------------------------------------------------------------------------------- /sr_unix/cvtprot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/cvtprot.c -------------------------------------------------------------------------------- /sr_unix/db_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/db_read.h -------------------------------------------------------------------------------- /sr_unix/db_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/db_write.h -------------------------------------------------------------------------------- /sr_unix/dbfilop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/dbfilop.c -------------------------------------------------------------------------------- /sr_unix/dec_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/dec_err.c -------------------------------------------------------------------------------- /sr_unix/dm_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/dm_read.c -------------------------------------------------------------------------------- /sr_unix/do_semop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/do_semop.c -------------------------------------------------------------------------------- /sr_unix/do_semop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/do_semop.h -------------------------------------------------------------------------------- /sr_unix/do_shmat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/do_shmat.c -------------------------------------------------------------------------------- /sr_unix/do_shmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/do_shmat.h -------------------------------------------------------------------------------- /sr_unix/do_xform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/do_xform.c -------------------------------------------------------------------------------- /sr_unix/dollarh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/dollarh.c -------------------------------------------------------------------------------- /sr_unix/dollarh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/dollarh.h -------------------------------------------------------------------------------- /sr_unix/dse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/dse.c -------------------------------------------------------------------------------- /sr_unix/dse_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/dse_cmd.c -------------------------------------------------------------------------------- /sr_unix/dse_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/dse_help.c -------------------------------------------------------------------------------- /sr_unix/dse_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/dse_main.c -------------------------------------------------------------------------------- /sr_unix/dse_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/dse_open.c -------------------------------------------------------------------------------- /sr_unix/dsk_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/dsk_read.c -------------------------------------------------------------------------------- /sr_unix/err_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/err_init.c -------------------------------------------------------------------------------- /sr_unix/errorsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/errorsp.h -------------------------------------------------------------------------------- /sr_unix/exi_ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/exi_ch.c -------------------------------------------------------------------------------- /sr_unix/exttime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/exttime.c -------------------------------------------------------------------------------- /sr_unix/f_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/f_char.c -------------------------------------------------------------------------------- /sr_unix/f_piece.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/f_piece.c -------------------------------------------------------------------------------- /sr_unix/fgncalsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/fgncalsp.h -------------------------------------------------------------------------------- /sr_unix/gcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gcall.h -------------------------------------------------------------------------------- /sr_unix/gdeget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gdeget.m -------------------------------------------------------------------------------- /sr_unix/gdeput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gdeput.m -------------------------------------------------------------------------------- /sr_unix/gdeverif.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gdeverif.m -------------------------------------------------------------------------------- /sr_unix/genpat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/genpat.c -------------------------------------------------------------------------------- /sr_unix/getcaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/getcaps.c -------------------------------------------------------------------------------- /sr_unix/getcaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/getcaps.h -------------------------------------------------------------------------------- /sr_unix/getzmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/getzmode.c -------------------------------------------------------------------------------- /sr_unix/go_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/go_load.c -------------------------------------------------------------------------------- /sr_unix/golevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/golevel.c -------------------------------------------------------------------------------- /sr_unix/goq_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/goq_load.c -------------------------------------------------------------------------------- /sr_unix/gse.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gse.mpt -------------------------------------------------------------------------------- /sr_unix/gt_ar.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gt_ar.csh -------------------------------------------------------------------------------- /sr_unix/gt_as.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gt_as.csh -------------------------------------------------------------------------------- /sr_unix/gt_cc.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gt_cc.csh -------------------------------------------------------------------------------- /sr_unix/gt_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gt_timer.h -------------------------------------------------------------------------------- /sr_unix/gtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm.c -------------------------------------------------------------------------------- /sr_unix/gtm_aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_aio.h -------------------------------------------------------------------------------- /sr_unix/gtm_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_ci.c -------------------------------------------------------------------------------- /sr_unix/gtm_cip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_cip.c -------------------------------------------------------------------------------- /sr_unix/gtm_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_conv.c -------------------------------------------------------------------------------- /sr_unix/gtm_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_conv.h -------------------------------------------------------------------------------- /sr_unix/gtm_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_dump.c -------------------------------------------------------------------------------- /sr_unix/gtm_ftok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_ftok.c -------------------------------------------------------------------------------- /sr_unix/gtm_icu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_icu.c -------------------------------------------------------------------------------- /sr_unix/gtm_icu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_icu.h -------------------------------------------------------------------------------- /sr_unix/gtm_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_ipc.h -------------------------------------------------------------------------------- /sr_unix/gtm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_main.c -------------------------------------------------------------------------------- /sr_unix/gtm_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_pipe.c -------------------------------------------------------------------------------- /sr_unix/gtm_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_pipe.h -------------------------------------------------------------------------------- /sr_unix/gtm_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_poll.h -------------------------------------------------------------------------------- /sr_unix/gtm_sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_sem.h -------------------------------------------------------------------------------- /sr_unix/gtm_term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_term.h -------------------------------------------------------------------------------- /sr_unix/gtm_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_tls.c -------------------------------------------------------------------------------- /sr_unix/gtm_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_tls.h -------------------------------------------------------------------------------- /sr_unix/gtm_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_utf8.c -------------------------------------------------------------------------------- /sr_unix/gtm_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_utf8.h -------------------------------------------------------------------------------- /sr_unix/gtm_wake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_wake.c -------------------------------------------------------------------------------- /sr_unix/gtm_zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_zlib.c -------------------------------------------------------------------------------- /sr_unix/gtm_zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtm_zlib.h -------------------------------------------------------------------------------- /sr_unix/gtmci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtmci.c -------------------------------------------------------------------------------- /sr_unix/gtmci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtmci.h -------------------------------------------------------------------------------- /sr_unix/gtmci_ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtmci_ch.c -------------------------------------------------------------------------------- /sr_unix/gtmcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtmcrypt.h -------------------------------------------------------------------------------- /sr_unix/gtmdef.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtmdef.csh -------------------------------------------------------------------------------- /sr_unix/gtmhelp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtmhelp.m -------------------------------------------------------------------------------- /sr_unix/gtmhlpld.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtmhlpld.m -------------------------------------------------------------------------------- /sr_unix/gtmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtmio.h -------------------------------------------------------------------------------- /sr_unix/gtmio_ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtmio_ch.c -------------------------------------------------------------------------------- /sr_unix/gtmlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtmlink.c -------------------------------------------------------------------------------- /sr_unix/gtmlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtmlink.h -------------------------------------------------------------------------------- /sr_unix/gtmrecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtmrecv.c -------------------------------------------------------------------------------- /sr_unix/gtmrecv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtmrecv.h -------------------------------------------------------------------------------- /sr_unix/gtmsrc.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/gtmsrc.csh -------------------------------------------------------------------------------- /sr_unix/init_gtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/init_gtm.c -------------------------------------------------------------------------------- /sr_unix/io_is_rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/io_is_rm.c -------------------------------------------------------------------------------- /sr_unix/io_is_sn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/io_is_sn.c -------------------------------------------------------------------------------- /sr_unix/io_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/io_type.c -------------------------------------------------------------------------------- /sr_unix/iob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/iob.h -------------------------------------------------------------------------------- /sr_unix/iob_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/iob_read.c -------------------------------------------------------------------------------- /sr_unix/iorm_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/iorm_get.c -------------------------------------------------------------------------------- /sr_unix/iorm_use.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/iorm_use.c -------------------------------------------------------------------------------- /sr_unix/iormdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/iormdef.h -------------------------------------------------------------------------------- /sr_unix/iosp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/iosp.h -------------------------------------------------------------------------------- /sr_unix/iott_use.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/iott_use.c -------------------------------------------------------------------------------- /sr_unix/iottdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/iottdef.h -------------------------------------------------------------------------------- /sr_unix/ipcrmid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ipcrmid.c -------------------------------------------------------------------------------- /sr_unix/ipcrmid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ipcrmid.h -------------------------------------------------------------------------------- /sr_unix/jnlsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/jnlsp.h -------------------------------------------------------------------------------- /sr_unix/joberr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/joberr.h -------------------------------------------------------------------------------- /sr_unix/jobsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/jobsp.h -------------------------------------------------------------------------------- /sr_unix/laberror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/laberror.c -------------------------------------------------------------------------------- /sr_unix/lke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/lke.c -------------------------------------------------------------------------------- /sr_unix/lke_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/lke_cmd.c -------------------------------------------------------------------------------- /sr_unix/lke_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/lke_help.c -------------------------------------------------------------------------------- /sr_unix/lke_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/lke_main.c -------------------------------------------------------------------------------- /sr_unix/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/load.h -------------------------------------------------------------------------------- /sr_unix/lockdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/lockdefs.h -------------------------------------------------------------------------------- /sr_unix/map_sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/map_sym.c -------------------------------------------------------------------------------- /sr_unix/mdefsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/mdefsa.h -------------------------------------------------------------------------------- /sr_unix/mdefsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/mdefsp.h -------------------------------------------------------------------------------- /sr_unix/memprot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/memprot.c -------------------------------------------------------------------------------- /sr_unix/memprot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/memprot.h -------------------------------------------------------------------------------- /sr_unix/mmrhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/mmrhash.c -------------------------------------------------------------------------------- /sr_unix/mmrhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/mmrhash.h -------------------------------------------------------------------------------- /sr_unix/mu_gvis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/mu_gvis.c -------------------------------------------------------------------------------- /sr_unix/mupip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/mupip.c -------------------------------------------------------------------------------- /sr_unix/muprecsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/muprecsp.h -------------------------------------------------------------------------------- /sr_unix/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/mutex.c -------------------------------------------------------------------------------- /sr_unix/mutexsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/mutexsp.h -------------------------------------------------------------------------------- /sr_unix/obj_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/obj_code.c -------------------------------------------------------------------------------- /sr_unix/obj_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/obj_file.c -------------------------------------------------------------------------------- /sr_unix/offset.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/offset.awk -------------------------------------------------------------------------------- /sr_unix/offset.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/offset.csh -------------------------------------------------------------------------------- /sr_unix/ojchkfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ojchkfs.c -------------------------------------------------------------------------------- /sr_unix/ojparams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ojparams.c -------------------------------------------------------------------------------- /sr_unix/op_fnp1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/op_fnp1.c -------------------------------------------------------------------------------- /sr_unix/op_job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/op_job.c -------------------------------------------------------------------------------- /sr_unix/op_setp1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/op_setp1.c -------------------------------------------------------------------------------- /sr_unix/op_zedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/op_zedit.c -------------------------------------------------------------------------------- /sr_unix/op_zlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/op_zlink.c -------------------------------------------------------------------------------- /sr_unix/op_zmess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/op_zmess.c -------------------------------------------------------------------------------- /sr_unix/op_zut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/op_zut.c -------------------------------------------------------------------------------- /sr_unix/outc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/outc.c -------------------------------------------------------------------------------- /sr_unix/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/random.c -------------------------------------------------------------------------------- /sr_unix/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/random.h -------------------------------------------------------------------------------- /sr_unix/rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/rc.h -------------------------------------------------------------------------------- /sr_unix/rc_cpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/rc_cpt.h -------------------------------------------------------------------------------- /sr_unix/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/readline.c -------------------------------------------------------------------------------- /sr_unix/readline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/readline.h -------------------------------------------------------------------------------- /sr_unix/rel_crit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/rel_crit.c -------------------------------------------------------------------------------- /sr_unix/rel_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/rel_lock.c -------------------------------------------------------------------------------- /sr_unix/repl_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/repl_log.c -------------------------------------------------------------------------------- /sr_unix/repl_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/repl_msg.h -------------------------------------------------------------------------------- /sr_unix/repl_sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/repl_sem.c -------------------------------------------------------------------------------- /sr_unix/repl_sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/repl_sem.h -------------------------------------------------------------------------------- /sr_unix/repl_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/repl_sp.h -------------------------------------------------------------------------------- /sr_unix/rtnhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/rtnhdr.h -------------------------------------------------------------------------------- /sr_unix/rtnobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/rtnobj.c -------------------------------------------------------------------------------- /sr_unix/rtnobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/rtnobj.h -------------------------------------------------------------------------------- /sr_unix/runall.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/runall.csh -------------------------------------------------------------------------------- /sr_unix/send_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/send_msg.c -------------------------------------------------------------------------------- /sr_unix/sig_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/sig_init.c -------------------------------------------------------------------------------- /sr_unix/sig_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/sig_init.h -------------------------------------------------------------------------------- /sr_unix/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/sleep.c -------------------------------------------------------------------------------- /sr_unix/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/sleep.h -------------------------------------------------------------------------------- /sr_unix/suspend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/suspend.c -------------------------------------------------------------------------------- /sr_unix/timersp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/timersp.h -------------------------------------------------------------------------------- /sr_unix/trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/trigger.h -------------------------------------------------------------------------------- /sr_unix/trmdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/trmdef.h -------------------------------------------------------------------------------- /sr_unix/ttt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ttt.txt -------------------------------------------------------------------------------- /sr_unix/utfcgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/utfcgr.c -------------------------------------------------------------------------------- /sr_unix/utfcgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/utfcgr.h -------------------------------------------------------------------------------- /sr_unix/wcs_flu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/wcs_flu.c -------------------------------------------------------------------------------- /sr_unix/wcs_wt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/wcs_wt.h -------------------------------------------------------------------------------- /sr_unix/xoshiro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/xoshiro.h -------------------------------------------------------------------------------- /sr_unix/ydb.gtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ydb.gtc -------------------------------------------------------------------------------- /sr_unix/ydb_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ydb_ci.c -------------------------------------------------------------------------------- /sr_unix/ydb_ci_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ydb_ci_t.c -------------------------------------------------------------------------------- /sr_unix/ydb_cip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ydb_cip.c -------------------------------------------------------------------------------- /sr_unix/ydb_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ydb_exit.c -------------------------------------------------------------------------------- /sr_unix/ydb_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ydb_free.c -------------------------------------------------------------------------------- /sr_unix/ydb_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ydb_init.c -------------------------------------------------------------------------------- /sr_unix/ydb_tp_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ydb_tp_s.c -------------------------------------------------------------------------------- /sr_unix/ydbenv.mpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/ydbenv.mpt -------------------------------------------------------------------------------- /sr_unix/zbreaksp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/zbreaksp.h -------------------------------------------------------------------------------- /sr_unix/zhist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/zhist.c -------------------------------------------------------------------------------- /sr_unix/zro_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix/zro_load.c -------------------------------------------------------------------------------- /sr_unix_cm/gtcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix_cm/gtcm.h -------------------------------------------------------------------------------- /sr_unix_cm/omi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_unix_cm/omi.h -------------------------------------------------------------------------------- /sr_x86_64/aswp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_x86_64/aswp.s -------------------------------------------------------------------------------- /sr_x86_64/debug.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_x86_64/debug.si -------------------------------------------------------------------------------- /sr_x86_64/error.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_x86_64/error.si -------------------------------------------------------------------------------- /sr_x86_64/g_msf.si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_x86_64/g_msf.si -------------------------------------------------------------------------------- /sr_x86_64/op_neg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_x86_64/op_neg.s -------------------------------------------------------------------------------- /sr_x86_64/op_sto.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_x86_64/op_sto.s -------------------------------------------------------------------------------- /sr_x86_64/ttt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_x86_64/ttt.c -------------------------------------------------------------------------------- /sr_x86_64/x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_x86_64/x86_64.h -------------------------------------------------------------------------------- /sr_x86_regs/i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YottaDB/YDB/HEAD/sr_x86_regs/i386.h --------------------------------------------------------------------------------