about summary refs log tree commit diff stats
path: root/html/071deep_copy.cc.html
Commit message (Collapse)AuthorAgeFilesLines
* 4239Kartik Agaram2018-05-081-8/+8
|
* 4228Kartik K. Agaram2018-03-151-3/+3
|
* 4199Kartik K. Agaram2018-01-251-481/+469
|
* 4161Kartik K. Agaram2017-12-151-8/+8
|
* 4155Kartik K. Agaram2017-12-071-21/+21
|
* 4134 - 'input' = 'ingredient'Kartik K. Agaram2017-12-031-5/+5
|
* 4109Kartik K. Agaram2017-11-051-5/+5
|
* 4102Kartik K. Agaram2017-11-011-214/+219
|
* 4003Kartik K. Agaram2017-09-231-5/+5
|
* 3998Kartik K. Agaram2017-09-131-427/+444
|
* 3995Kartik K. Agaram2017-09-131-0/+525
888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#ifndef SYSCALLTABLE_H
#define SYSCALLTABLE_H

//This file will also be included by C library.
enum {
    SYS_open,  // 0
    SYS_close,  // 1
    SYS_read,  // 2
    SYS_write,  // 3
    SYS_lseek,  // 4
    SYS_stat,  // 5
    SYS_fstat,  // 6
    SYS_ioctl,  // 7
    SYS_exit,  // 8
    SYS_sbrk,  // 9
    SYS_fork,  // 10
    SYS_getpid,  // 11

    //non-posix
    SYS_execute,  // 12
    SYS_execve,  // 13
    SYS_wait,  // 14
    SYS_kill,  // 15
    SYS_mount,  // 16
    SYS_unmount,  // 17
    SYS_mkdir,  // 18
    SYS_rmdir,  // 19
    SYS_getdents,  // 20
    SYS_getWorkingDirectory,  // 21
    SYS_setWorkingDirectory,  // 22
    SYS_managePipe,  // 23
    SYS_readDir,  // 24
    SYS_getUptimeMilliseconds,  // 25
    SYS_sleepMilliseconds,  // 26
    SYS_executeOnTTY,  // 27
    SYS_manageMessage,  // 28
    SYS_UNUSED,  // 29

    SYS_mmap,  // 30
    SYS_munmap,  // 31
    SYS_shm_open,  // 32
    SYS_shm_unlink,  // 33
    SYS_ftruncate,  // 34
    SYS_posix_openpt,  // 35
    SYS_ptsname_r,  // 36

    SYSCALL_COUNT  // 37
};

#endif // SYSCALLTABLE_H