Home
last modified time | relevance | path

Searched refs:t (Results 1 – 13 of 13) sorted by relevance

/xv6-public/
H A Dstring.c69 strncpy(char *s, const char *t, int n) in strncpy() argument
74 while(n-- > 0 && (*s++ = *t++) != 0) in strncpy()
83 safestrcpy(char *s, const char *t, int n) in safestrcpy() argument
90 while(--n > 0 && (*s++ = *t++) != 0) in safestrcpy()
H A Dulib.c8 strcpy(char *s, const char *t) in strcpy() argument
13 while((*s++ = *t++) != 0) in strcpy()
H A DBUGS5 can't always runcmd in child -- breaks cd.
H A DNotes6 bootmain.c doesn't work right if the ELF sections aren't
7 sector-aligned. so you can't use ld -N. and the sections may also need
23 user pointers aren't valid in the kernel
35 we can't really use a separate stack segment, since stack addresses
47 do we need to set fs and gs? so user processes can't abuse them?
84 device interrupts don't clear FL_IF
107 sh: chain of pipes won't work, also ugly that parent closes fdarray entries too
H A Dmmu.h80 #define PGADDR(d, t, o) ((uint)((d) << PDXSHIFT | (t) << PTXSHIFT | (o))) argument
143 ushort t; // Trap on task switch member
H A D.gdbinit.tmpl4 # There doesn't seem to be a good way to detect if we're in 16- or
H A Dkernel.ld15 *(.text .stub .text.* .gnu.linkonce.t.*)
H A Drunoff209 ' s.defs > t.defs
H A Dbootasm.S68 # If bootmain returns (it shouldn't), trigger a Bochs
H A Ddot-bochsrc88 # without SMP support, it won't accept values different from 1.
115 # The default is 32MB, most OS's won't need more than that.
341 # to be written to. If you don't use this option or set the filename to
342 # '-' the output is written to the console. If you really don't want it,
356 # %t : 11 decimal digits timer tick
361 # Default : %t%e%d
363 # logprefix: %t-%e-@%i-%d
366 #logprefix: %t%e%d
373 # don't be surprised if you get strange behavior or crashes.
399 # If you really don't want it, make it /dev/null or '-'. :^(
[all …]
H A DTRICKS68 This doesn't matter, because if it was safe to be
135 setting np->state isn't safe, since the compiler is
H A DREADME42 We don't process error reports (see note on top of this file).
H A Dfs.c517 namecmp(const char *s, const char *t) in namecmp() argument
519 return strncmp(s, t, DIRSIZ); in namecmp()