]> Devi Nivas Git - cs3210-lab0.git/log
cs3210-lab0.git
16 years agoinode reuse bug.
rsc [Sun, 31 May 2009 01:34:46 +0000 (01:34 +0000)]
inode reuse bug.

Suppose an inode has been used and freed.
It is left marked I_VALID (the bug).
Now ialloc comes along and reuses the
inode.  It writes the new inode type to disk
and returns iget(dev, inum) to get the
cache entry.  Iget sees that the inode is valid
and doesn't bother refreshing from disk.
Now when the caller iupdates, it will write
out a zero type and the file or directory has
disappeared.

16 years agobio.c: use struct like icache does
rsc [Sun, 31 May 2009 01:29:17 +0000 (01:29 +0000)]
bio.c: use struct like icache does

16 years agoide.c: make names more regular
rsc [Sun, 31 May 2009 01:29:01 +0000 (01:29 +0000)]
ide.c: make names more regular

16 years agoclean up %fs %gs use
rsc [Sun, 31 May 2009 01:12:08 +0000 (01:12 +0000)]
clean up %fs %gs use

16 years agosync with c; .text is implied
rsc [Sun, 31 May 2009 01:00:38 +0000 (01:00 +0000)]
sync with c; .text is implied

16 years agodrop NADDRS and INDIRECT; too many names
rsc [Sun, 31 May 2009 00:59:37 +0000 (00:59 +0000)]
drop NADDRS and INDIRECT; too many names

16 years agotab police
rsc [Sun, 31 May 2009 00:39:17 +0000 (00:39 +0000)]
tab police

16 years agomove fork into proc.c
rsc [Sun, 31 May 2009 00:38:51 +0000 (00:38 +0000)]
move fork into proc.c

16 years agomissed this file in last checkin
rsc [Sun, 31 May 2009 00:31:20 +0000 (00:31 +0000)]
missed this file in last checkin

16 years agoSome proc cleanup, moving some of copyproc into allocproc.
rsc [Sun, 31 May 2009 00:28:45 +0000 (00:28 +0000)]
Some proc cleanup, moving some of copyproc into allocproc.

Also, an experiment: use "thread-local" storage for c and cp
instead of the #define macro for curproc[cpu()].

16 years agomove T_DIR etc into stat.h; move type up
rsc [Sun, 31 May 2009 00:26:10 +0000 (00:26 +0000)]
move T_DIR etc into stat.h; move type up

16 years agoAdd serial port input/output.
rsc [Sun, 31 May 2009 00:24:11 +0000 (00:24 +0000)]
Add serial port input/output.
Delete parallel port output.
Works well with qemu -nographic mode.

16 years agoslight rearrangement; sleep on b not buf.
rsc [Sun, 31 May 2009 00:23:00 +0000 (00:23 +0000)]
slight rearrangement; sleep on b not buf.

16 years agoAdd MIT license file; update xv6-rev2.tar.gz with LICENSE.
rsc [Tue, 26 May 2009 16:58:33 +0000 (16:58 +0000)]
Add MIT license file; update xv6-rev2.tar.gz with LICENSE.
Other files unchanged.

16 years agobe consistent: no underscores in function names
rsc [Sun, 8 Mar 2009 22:07:13 +0000 (22:07 +0000)]
be consistent: no underscores in function names

16 years agoxv6: boot loader adjustments
rsc [Sun, 8 Mar 2009 21:41:30 +0000 (21:41 +0000)]
xv6: boot loader adjustments

do Bochs breakpoint and spin in bootasm.S.
not needed in bootmain too.
fix readseg bug (rounding of va).
zero segments when memsz > filesz.
no need to clear BSS in kernel main.
make bootother.S like bootasm.S

16 years agoxv6: use stosb for memset
rsc [Sun, 8 Mar 2009 21:38:30 +0000 (21:38 +0000)]
xv6: use stosb for memset

16 years agoxv6/x86.h: add stosb, fix bugs in insl/outsl (rep not repne)
rsc [Sun, 8 Mar 2009 21:27:57 +0000 (21:27 +0000)]
xv6/x86.h: add stosb, fix bugs in insl/outsl (rep not repne)

16 years agoxv6/x86.h: inline assembly cleanup
rsc [Sun, 8 Mar 2009 20:56:38 +0000 (20:56 +0000)]
xv6/x86.h: inline assembly cleanup

17 years agoExplain why itrunc() is OK w.r.t. crashes.
rtm [Mon, 20 Oct 2008 18:05:48 +0000 (18:05 +0000)]
Explain why itrunc() is OK w.r.t. crashes.

17 years agotry harder to get directory refcounts right
kolya [Fri, 17 Oct 2008 12:42:13 +0000 (12:42 +0000)]
try harder to get directory refcounts right

17 years agomake mkdir crash-safer, as noticed by many students on midterm
kolya [Thu, 16 Oct 2008 15:18:49 +0000 (15:18 +0000)]
make mkdir crash-safer, as noticed by many students on midterm

17 years agofree the indirect block
kolya [Thu, 16 Oct 2008 15:00:23 +0000 (15:00 +0000)]
free the indirect block

17 years agoas rtm noticed, avoid doubly-freeing pipe page
kolya [Wed, 15 Oct 2008 17:42:56 +0000 (17:42 +0000)]
as rtm noticed, avoid doubly-freeing pipe page

17 years agoindent
kolya [Wed, 15 Oct 2008 05:15:32 +0000 (05:15 +0000)]
indent

17 years agocleaner swtch.S
kolya [Wed, 15 Oct 2008 05:14:10 +0000 (05:14 +0000)]
cleaner swtch.S

17 years agosave cpus.intena in sched(), so we get the right EFLAGS.IF value once a
kolya [Wed, 15 Oct 2008 05:01:39 +0000 (05:01 +0000)]
save cpus.intena in sched(), so we get the right EFLAGS.IF value once a
timer-preempted kernel thread resumes execution in trap() after yield().
otherwise the kernel could get an arbitrary number of nested timer intrs.

17 years agocheck cp->killed before returning to user from a timer interrupt
kolya [Wed, 15 Oct 2008 04:57:02 +0000 (04:57 +0000)]
check cp->killed before returning to user from a timer interrupt

17 years agoupdate .cvsignore
kolya [Wed, 15 Oct 2008 04:54:24 +0000 (04:54 +0000)]
update .cvsignore

17 years agominor cleanup
kolya [Sun, 12 Oct 2008 20:19:16 +0000 (20:19 +0000)]
minor cleanup

17 years agominor cleanup with STUB macro
kolya [Sun, 12 Oct 2008 19:54:11 +0000 (19:54 +0000)]
minor cleanup with STUB macro

17 years agoinclude explicitly initialized globals (int x = 0;) in cross-refs,
kolya [Sun, 12 Oct 2008 18:45:30 +0000 (18:45 +0000)]
include explicitly initialized globals (int x = 0;) in cross-refs,
also thanks to greg price.

17 years agofix: when two names only differed in case, crossrefs only included one of them.
kolya [Sun, 12 Oct 2008 18:33:14 +0000 (18:33 +0000)]
fix: when two names only differed in case, crossrefs only included one of them.
thanks to greg price.

17 years agobe clear what the root i-number is
rtm [Wed, 8 Oct 2008 18:57:13 +0000 (18:57 +0000)]
be clear what the root i-number is

17 years agodocument lock->locked=0 vs xchg(&lock->locked, 0)
rtm [Sun, 28 Sep 2008 10:53:54 +0000 (10:53 +0000)]
document lock->locked=0 vs xchg(&lock->locked, 0)

17 years agotrap 9 does not push ec: fix from Greg Price <price@mit.edu>
kolya [Wed, 24 Sep 2008 18:20:56 +0000 (18:20 +0000)]
trap 9 does not push ec: fix from Greg Price <price@mit.edu>

17 years agoalways save and restore %fs, %gs to ensure old segment entries are never
kolya [Wed, 24 Sep 2008 01:48:31 +0000 (01:48 +0000)]
always save and restore %fs, %gs to ensure old segment entries are never
accessible to user from the hidden CPU segment registers.

17 years agorestore std toolprefix
rtm [Thu, 11 Sep 2008 10:22:01 +0000 (10:22 +0000)]
restore std toolprefix

17 years agoomit *.d from tar file
rtm [Thu, 11 Sep 2008 10:20:40 +0000 (10:20 +0000)]
omit *.d from tar file

17 years agoadd copyright notice
kaashoek [Tue, 9 Sep 2008 11:42:44 +0000 (11:42 +0000)]
add copyright notice

17 years agomake bochsrc work for bochs 2.2.6
kolya [Wed, 3 Sep 2008 14:10:47 +0000 (14:10 +0000)]
make bochsrc work for bochs 2.2.6

17 years agomake pdf, ps, tarball
kolya [Wed, 3 Sep 2008 14:05:52 +0000 (14:05 +0000)]
make pdf, ps, tarball

17 years agonits in index.txt
kaashoek [Wed, 3 Sep 2008 12:29:44 +0000 (12:29 +0000)]
nits in index.txt
add slides for shell, x86 intro, x86 virtual memory  (deleted JOS from slides)

17 years agoDO NOT MAIL: xv6 web pages
rsc [Wed, 3 Sep 2008 04:50:04 +0000 (04:50 +0000)]
DO NOT MAIL: xv6 web pages

17 years agosimplify growproc
rtm [Thu, 28 Aug 2008 17:57:47 +0000 (17:57 +0000)]
simplify growproc

17 years agoavoid a bug w/ exit()
rtm [Thu, 28 Aug 2008 00:53:24 +0000 (00:53 +0000)]
avoid a bug w/ exit()

17 years agothe old explanation of AP startup might have been correct, but
rtm [Thu, 28 Aug 2008 00:52:05 +0000 (00:52 +0000)]
the old explanation of AP startup might have been correct, but
I understand this one.

17 years agoclean up circular buffers, so pipe can queue 512 bytes rather than 511
kolya [Fri, 22 Aug 2008 00:26:22 +0000 (00:26 +0000)]
clean up circular buffers, so pipe can queue 512 bytes rather than 511

17 years agofix obvious printf nits after reading through code
kolya [Thu, 21 Aug 2008 23:24:02 +0000 (23:24 +0000)]
fix obvious printf nits after reading through code

17 years agonow rev2
rsc [Wed, 20 Aug 2008 18:00:35 +0000 (18:00 +0000)]
now rev2

17 years agoadd nice font
rsc [Wed, 20 Aug 2008 18:00:24 +0000 (18:00 +0000)]
add nice font

17 years agoformatting updates
rsc [Wed, 20 Aug 2008 18:00:13 +0000 (18:00 +0000)]
formatting updates

17 years agobochs faster
rsc [Wed, 20 Aug 2008 17:59:29 +0000 (17:59 +0000)]
bochs faster

17 years agoxv6: latest (as of January 2008)
rsc [Wed, 20 Aug 2008 17:46:32 +0000 (17:46 +0000)]
xv6: latest (as of January 2008)

18 years agooops - wrong bit (vic zandy)
rsc [Thu, 20 Dec 2007 18:27:07 +0000 (18:27 +0000)]
oops - wrong bit (vic zandy)

18 years agofork minibug
rsc [Wed, 28 Nov 2007 20:47:22 +0000 (20:47 +0000)]
fork minibug

18 years agoMore complete lapic startup (thanks Silas)
rsc [Wed, 28 Nov 2007 20:47:10 +0000 (20:47 +0000)]
More complete lapic startup (thanks Silas)

18 years agobda[0xE] is a 16-bit segment number,
rsc [Wed, 28 Nov 2007 20:17:04 +0000 (20:17 +0000)]
bda[0xE] is a 16-bit segment number,
not a real address.  So shift 4.

Reported by Silas.

Jim McKie says this code only matters
on ancient EISA MP systems.

18 years agoproc_wait -> wait
rtm [Sat, 20 Oct 2007 18:25:38 +0000 (18:25 +0000)]
proc_wait -> wait

18 years agoModel verifying that wakeup really
rsc [Fri, 12 Oct 2007 04:21:04 +0000 (04:21 +0000)]
Model verifying that wakeup really
can be called after release without
causing deadlock.

18 years agoIncorporate new understanding of/with Intel SMP spec.
rsc [Mon, 1 Oct 2007 20:43:15 +0000 (20:43 +0000)]
Incorporate new understanding of/with Intel SMP spec.

Dropped cmpxchg in favor of xchg, to match lecture notes.

Use xchg to release lock, for future protection and to
keep gcc from acting clever.

18 years agoRe: why cpuid() in locking code?
rsc [Sun, 30 Sep 2007 14:30:04 +0000 (14:30 +0000)]
Re: why cpuid() in locking code?

rtm wrote:
> Why does acquire() call cpuid()? Why does release() call cpuid()?

The cpuid in acquire is redundant with the cmpxchg, as you said.
I have removed the cpuid from acquire.

The cpuid in release is actually doing something important,
but not on the hardware.  It keeps gcc from reordering the
lock->locked assignment above the other two during optimization.
(Not that current gcc -O2 would choose to do that, but it is allowed to.)
I have replaced the cpuid in release with a "gcc barrier" that
keeps gcc from moving things around but has no hardware effect.

On a related note, I don't think the cpuid in mpmain is necessary,
for the same reason that the cpuid wasn't needed in release.

As to the question of whether

  acquire();
  x = protected;
  release();

might read protected after release(), I still haven't convinced
myself whether it can.  I'll put the cpuid back into release if
we determine that it can.

Russ

18 years agotricks
rsc [Sun, 30 Sep 2007 14:20:47 +0000 (14:20 +0000)]
tricks

18 years agointerrupts during system calls
rsc [Thu, 27 Sep 2007 21:37:45 +0000 (21:37 +0000)]
interrupts during system calls

"It just works."

18 years agoFinal word on the locking fiasco?
rsc [Thu, 27 Sep 2007 21:25:37 +0000 (21:25 +0000)]
Final word on the locking fiasco?

Change pushcli / popcli so that they can never turn on
interrupts unexpectedly.  That is, if interrupts are on,
then pushcli(); popcli(); turns them off and back on, but
if they are off to begin with, then pushcli(); popcli(); is
a no-op.

I think our fundamental mistake was having a primitive
(release and then popcli nee spllo) that could turn
interrupts on at unexpected moments instead of being
explicit about when we want to start allowing interrupts.

With the new semantics, all the manual fiddling of ncli
to force interrupts off in certain sections goes away.
In return, we must explicitly mark the places where
we want to enable interrupts unconditionally, by calling sti().
There is only one: inside the scheduler loop.

18 years agocleaner
rsc [Thu, 27 Sep 2007 21:02:03 +0000 (21:02 +0000)]
cleaner

18 years agoyank out stack overflow checking ugliness
rsc [Thu, 27 Sep 2007 20:38:53 +0000 (20:38 +0000)]
yank out stack overflow checking ugliness

18 years agookay, that was long enough - revert
rsc [Thu, 27 Sep 2007 20:32:45 +0000 (20:32 +0000)]
okay, that was long enough - revert

18 years agotest: store curproc at top of stack
rsc [Thu, 27 Sep 2007 20:29:50 +0000 (20:29 +0000)]
test: store curproc at top of stack

I don't actually think this is worthwhile, but I figured
I would check it in before reverting it, so that it can
be in the revision history.

Pros:
  * curproc doesn't need to turn on/off interrupts
  * scheduler doesn't have to edit curproc anymore

Cons:
  * it's ugly
  * all the stack computation is more complicated.
  * it doesn't actually simplify anything but curproc,
    and even curproc is harder to follow.

18 years agonit
rsc [Thu, 27 Sep 2007 20:25:32 +0000 (20:25 +0000)]
nit

18 years agorename splhi/spllo to pushcli/popcli
rsc [Thu, 27 Sep 2007 20:09:40 +0000 (20:09 +0000)]
rename splhi/spllo to pushcli/popcli

18 years agooverkill: use segments to catch stack overflow (delete before next year)
rsc [Thu, 27 Sep 2007 19:39:10 +0000 (19:39 +0000)]
overkill: use segments to catch stack overflow (delete before next year)

18 years agonow spllo is okay
rsc [Thu, 27 Sep 2007 19:35:25 +0000 (19:35 +0000)]
now spllo is okay

18 years agobetter lapic writes, suggested by cliff
rsc [Thu, 27 Sep 2007 19:33:46 +0000 (19:33 +0000)]
better lapic writes, suggested by cliff

18 years agouse larger, allocated cpu stacks
rsc [Thu, 27 Sep 2007 19:32:43 +0000 (19:32 +0000)]
use larger, allocated cpu stacks

18 years agodon't call it ss - that's the stack segment
rsc [Thu, 27 Sep 2007 16:47:50 +0000 (16:47 +0000)]
don't call it ss - that's the stack segment

18 years agokernel SMP interruptibility fixes.
rsc [Thu, 27 Sep 2007 12:58:42 +0000 (12:58 +0000)]
kernel SMP interruptibility fixes.

Last year, right before I sent xv6 to the printer, I changed the
SETGATE calls so that interrupts would be disabled on entry to
interrupt handlers, and I added the nlock++ / nlock-- in trap()
so that interrupts would stay disabled while the hw handlers
(but not the syscall handler) did their work.  I did this because
the kernel was otherwise causing Bochs to triple-fault in SMP
mode, and time was short.

Robert observed yesterday that something was keeping the SMP
preemption user test from working.  It turned out that when I
simplified the lapic code I swapped the order of two register
writes that I didn't realize were order dependent.  I fixed that
and then since I had everything paged in kept going and tried
to figure out why you can't leave interrupts on during interrupt
handlers.  There are a few issues.

First, there must be some way to keep interrupts from "stacking
up" and overflowing the stack.  Keeping interrupts off the whole
time solves this problem -- even if the clock tick handler runs
long enough that the next clock tick is waiting when it finishes,
keeping interrupts off means that the handler runs all the way
through the "iret" before the next handler begins.  This is not
really a problem unless you are putting too many prints in trap
-- if the OS is doing its job right, the handlers should run
quickly and not stack up.

Second, if xv6 had page faults, then it would be important to
keep interrupts disabled between the start of the interrupt and
the time that cr2 was read, to avoid a scenario like:

   p1 page faults [cr2 set to faulting address]
   p1 starts executing trapasm.S
   clock interrupt, p1 preempted, p2 starts executing
   p2 page faults [cr2 set to another faulting address]
   p2 starts, finishes fault handler
   p1 rescheduled, reads cr2, sees wrong fault address

Alternately p1 could be rescheduled on the other cpu, in which
case it would still see the wrong cr2.  That said, I think cr2
is the only interrupt state that isn't pushed onto the interrupt
stack atomically at fault time, and xv6 doesn't care.  (This isn't
entirely hypothetical -- I debugged this problem on Plan 9.)

Third, and this is the big one, it is not safe to call cpu()
unless interrupts are disabled.  If interrupts are enabled then
there is no guarantee that, between the time cpu() looks up the
cpu id and the time that it the result gets used, the process
has not been rescheduled to the other cpu.  For example, the
very commonly-used expression curproc[cpu()] (aka the macro cp)
can end up referring to the wrong proc: the code stores the
result of cpu() in %eax, gets rescheduled to the other cpu at
just the wrong instant, and then reads curproc[%eax].

We use curproc[cpu()] to get the current process a LOT.  In that
particular case, if we arranged for the current curproc entry
to be addressed by %fs:0 and just use a different %fs on each
CPU, then we could safely get at curproc even with interrupts
disabled, since the read of %fs would be atomic with the read
of %fs:0.  Alternately, we could have a curproc() function that
disables interrupts while computing curproc[cpu()].  I've done
that last one.

Even in the current kernel, with interrupts off on entry to trap,
interrupts are enabled inside release if there are no locks held.
Also, the scheduler's idle loop must be interruptible at times
so that the clock and disk interrupts (which might make processes
runnable) can be handled.

In addition to the rampant use of curproc[cpu()], this little
snippet from acquire is wrong on smp:

  if(cpus[cpu()].nlock == 0)
    cli();
  cpus[cpu()].nlock++;

because if interrupts are off then we might call cpu(), get
rescheduled to a different cpu, look at cpus[oldcpu].nlock, and
wrongly decide not to disable interrupts on the new cpu.  The
fix is to always call cli().  But this is wrong too:

  if(holding(lock))
    panic("acquire");
  cli();
  cpus[cpu()].nlock++;

because holding looks at cpu().  The fix is:

  cli();
  if(holding(lock))
    panic("acquire");
  cpus[cpu()].nlock++;

I've done that, and I changed cpu() to complain the first time
it gets called with interrupts disabled.  (It gets called too
much to complain every time.)

I added new functions splhi and spllo that are like acquire and
release but without the locking:

  void
  splhi(void)
  {
    cli();
    cpus[cpu()].nsplhi++;
  }

  void
  spllo(void)
  {
    if(--cpus[cpu()].nsplhi == 0)
      sti();
  }

and I've used those to protect other sections of code that refer
to cpu() when interrupts would otherwise be disabled (basically
just curproc and setupsegs).  I also use them in acquire/release
and got rid of nlock.

I'm not thrilled with the names, but I think the concept -- a
counted cli/sti -- is sound.  Having them also replaces the
nlock++/nlock-- in trap.c and main.c, which is nice.

Final note: it's still not safe to enable interrupts in
the middle of trap() between lapic_eoi and returning
to user space.  I don't understand why, but we get a
fault on pop %es because 0x10 is a bad segment
descriptor (!) and then the fault faults trying to go into
a new interrupt because 0x8 is a bad segment descriptor too!
Triple fault.  I haven't debugged this yet.

18 years agouse console lock
rsc [Thu, 27 Sep 2007 12:29:25 +0000 (12:29 +0000)]
use console lock

18 years agomake slow bigdir last test
rsc [Thu, 27 Sep 2007 12:29:06 +0000 (12:29 +0000)]
make slow bigdir last test

18 years agochanges since two days ago:
rsc [Thu, 27 Sep 2007 11:27:04 +0000 (11:27 +0000)]
changes since two days ago:

drop , address=0xf0000 from romimage line.
newer bochs has a 128k bios that it loads elsewhere.
so let bochs decide where the romimage goes.

change cpu quantum to 1 (default is 5, max is 16)
in an attempt to provoke more races.  only provokes
them slightly more frequently, may not be worth
the slowdown.

18 years agouse standard bios location
rsc [Thu, 27 Sep 2007 05:14:25 +0000 (05:14 +0000)]
use standard bios location

18 years agobelieve it or not, this was working
rsc [Thu, 27 Sep 2007 05:13:10 +0000 (05:13 +0000)]
believe it or not, this was working

the macro expansion of "char *cp;" turned into
char *(curproc[cpu()]);  which declares a dynamically
sized array of char* called curproc.

so then &cp == &(curproc[cpu()]) was actually a
stack variable as "expected".  it was one past the
end of the array, but the implicit alloca allocated
more than was necessary.

do not tell me that making cp a #define was a bad idea.
there are worse problems to fix.  more on that later.

18 years agocomment bochs nonsense
rsc [Wed, 26 Sep 2007 23:32:47 +0000 (23:32 +0000)]
comment bochs nonsense

18 years agovarious comment and print tweaks
rsc [Wed, 26 Sep 2007 23:32:00 +0000 (23:32 +0000)]
various comment and print tweaks

18 years agodebugging prints
rsc [Wed, 26 Sep 2007 23:24:23 +0000 (23:24 +0000)]
debugging prints

18 years agoApparently the initial interrupt count lapic[TICR]
rsc [Wed, 26 Sep 2007 20:34:12 +0000 (20:34 +0000)]
Apparently the initial interrupt count lapic[TICR]
must be set *after* initializing the lapic[TIMER] vector.

Doing this, we now get clock interrupts on cpu 1.
(No idea why we always got them on cpu 0.)

Don't write to TCCR - it is read-only.

18 years agooops, interrupts on in syscall traps doesn't work after all
rtm [Tue, 25 Sep 2007 16:15:05 +0000 (16:15 +0000)]
oops, interrupts on in syscall traps doesn't work after all

18 years agotell SETGATE to leave interrupts on for T_SYSCALL
rtm [Tue, 25 Sep 2007 15:23:44 +0000 (15:23 +0000)]
tell SETGATE to leave interrupts on for T_SYSCALL
panic if unknown fault with CPL=0 (i.e. in kernel)

18 years agoThis should fix building on FreeBSD
nelhage [Wed, 19 Sep 2007 23:49:52 +0000 (23:49 +0000)]
This should fix building on FreeBSD

18 years agoFix compilation on 64-bit machines (thanks to andersk for patch)
nelhage [Tue, 18 Sep 2007 00:41:34 +0000 (00:41 +0000)]
Fix compilation on 64-bit machines (thanks to andersk for patch)

18 years agofix comments
rtm [Sat, 15 Sep 2007 20:05:47 +0000 (20:05 +0000)]
fix comments

18 years agosh
rsc [Wed, 5 Sep 2007 15:55:43 +0000 (15:55 +0000)]
sh

18 years agocontinuous quality management
rtm [Fri, 31 Aug 2007 19:55:27 +0000 (19:55 +0000)]
continuous quality management

18 years agosymlink implementation
rsc [Thu, 30 Aug 2007 18:36:38 +0000 (18:36 +0000)]
symlink implementation

18 years agodo not toss .ps
rsc [Thu, 30 Aug 2007 18:33:48 +0000 (18:33 +0000)]
do not toss .ps

18 years agoclumsy cd
rsc [Thu, 30 Aug 2007 18:30:26 +0000 (18:30 +0000)]
clumsy cd

18 years agomake new Homework 8 work
rtm [Thu, 30 Aug 2007 18:21:35 +0000 (18:21 +0000)]
make new Homework 8 work

18 years agooops - broke circular buffer
rsc [Thu, 30 Aug 2007 18:20:53 +0000 (18:20 +0000)]
oops - broke circular buffer

18 years agooops - broke arg counting
rsc [Thu, 30 Aug 2007 18:19:52 +0000 (18:19 +0000)]
oops - broke arg counting

18 years agolongjmp -> swtch in comments
rtm [Thu, 30 Aug 2007 17:39:56 +0000 (17:39 +0000)]
longjmp -> swtch in comments