(strip_exit_codes) Include _ in the list of characters considered as
[pintos-anon] / src / lib /
2005-01-21 Ben Pfaffsyscall-stub.h is gone; don't #include it.
2005-01-20 Ben PfaffImprove debuggability by eliminating system call stub...
2005-01-10 Ben PfaffFix %' grouping in printf().
2005-01-02 Ben PfaffChange assembly from AT&T to Intel syntax.
2005-01-01 Ben PfaffAdd a suggestion to use `backtrace' and a reference...
2004-12-31 Ben PfaffAdd list_min(), list_max().
2004-12-31 Ben PfaffFix brown-bag error.
2004-12-15 Ben PfaffClean up.
2004-12-15 Ben PfaffClean up inode code:
2004-12-14 Ben PfaffComment.
2004-12-09 Ben PfaffRename do_power_off to power_off_when_done.
2004-12-09 Ben PfaffPower off on kernel panic.
2004-12-02 Ben PfaffRemove redundant test.
2004-12-01 Ben PfaffAdd qsort(), bsearch().
2004-11-05 Ben PfaffFix bug caused by previous change.
2004-11-05 Ben PfaffImprove list_remove().
2004-11-05 Ben PfaffPrevent bitmap_scan() from assert-failing if CNT is...
2004-10-29 Ben PfaffFix bug in strlcpy() that could cause reading too much...
2004-10-25 Ben PfaffImprove implementation of puts().
2004-10-23 Ben PfaffAdd filesize() stub.
2004-10-18 Ben PfaffRevert to previous version.
2004-10-18 Ben PfaffASSERT should evaluate to an expression not a statement.
2004-10-17 Ben PfaffComments.
2004-10-06 Ben PfaffMake freeing pages not require the pool lock,
2004-09-27 Ben PfaffBug fix.
2004-09-27 Ben PfaffBug fixes.
2004-09-27 Ben PfaffComments.
2004-09-27 Ben PfaffFix bugs.
2004-09-26 Ben PfaffPrint statistics at power off.
2004-09-26 Ben PfaffTurn off assertions when running in the kernel.
2004-09-23 Ben PfaffChange bitmap interface, update references.
2004-09-22 Ben PfaffMake console lock recursive.
2004-09-21 Ben PfaffImplement (u)intmax_t in printf().
2004-09-20 Ben PfaffImprove hex_dump().
2004-09-20 Ben PfaffIntroduce PID_ERROR as an invalid exec return value.
2004-09-20 Ben PfaffAdd initial_size argument to create syscall.
2004-09-20 Ben PfaffAdd putbuf().
2004-09-20 Ben PfaffRevise makefile structure.
2004-09-19 Ben PfaffSyscall handler doesn't expect to see return address...
2004-09-19 Ben PfaffPass return code from main() to exit().
2004-09-18 Ben PfaffClarify strtok_r() description.
2004-09-16 Ben PfaffReorder.
2004-09-13 Ben PfaffUse __SIZE_TYPE__ for size_t, __PTRDIFF_TYPE__ for...
2004-09-13 Ben PfaffMake the bitmap responsible for allocation.
2004-09-13 Ben PfaffChange "stddef.h" to <stddef.h>
2004-09-13 Ben PfaffFlush serial device on panic.
2004-09-13 Ben PfaffNeeds #include <console.h>.
2004-09-11 Ben PfaffDo console locking.
2004-09-11 Ben PfaffFormat null pointers as 0x0.
2004-09-09 Ben PfaffAdd new syscall stubs.
2004-09-09 Ben PfaffAdd syscalls.
2004-09-07 Ben PfaffAdd tolower(), toupper().
2004-09-07 Ben PfaffFirst stab at interrupt-driven serial.
2004-09-07 Ben PfaffAdd comment.
2004-09-07 Ben PfaffAdd isblank().
2004-09-06 Ben PfaffComment.
2004-09-06 Ben PfaffFix up header guards.
2004-09-06 Ben PfaffFix up header guards.
2004-09-06 Ben PfaffRename printk() to printf().
2004-09-05 Ben PfaffRemove NDEBUG.
2004-09-05 Ben PfaffRedo makefiles.
2004-09-05 Ben Pfaff%#X uses 0X not 0x.
2004-09-05 Ben PfaffHandle bit_cnt of 0 properly.
2004-09-05 Ben PfaffFix some new printf bugs.
2004-09-05 Ben PfaffReorganize.
2004-09-04 Ben PfaffDocument strtok_r().
2004-09-03 Ben PfaffAdd comments.
2004-09-03 Ben PfaffAdd comments.
2004-09-03 Ben PfaffComments.
2004-09-03 Ben PfaffReorganize, add comments.
2004-09-03 Ben PfaffAdd list_head(), list_tail().
2004-09-03 Ben PfaffAdd comments.
2004-09-02 Ben PfaffReorganize.
2004-09-02 Ben PfaffAdd comments.
2004-09-01 Ben PfaffMisc cleanups in init, thread.
2004-09-01 Ben PfaffAdd assert.
2004-09-01 Ben PfaffMake interrupt.h names more regular.
2004-08-31 Ben PfaffAllow user to provide random seed to random_init().
2004-08-31 Ben PfaffAdd atoi().
2004-08-31 Ben PfaffDebug. Add bitmap_dump().
2004-08-31 Ben PfaffAdd DEBUG() macro for debugging that can be turned...
2004-08-31 Ben PfaffGet rid of backdoor.
2004-08-31 Ben PfaffAdd strtok_r().
2004-08-30 Ben PfaffAdd strcmp(), asserts.
2004-08-30 Ben PfaffAdd bitmap_read(), bitmap_write().
2004-08-30 Ben PfaffFix bitmap usage.
2004-08-30 Ben PfaffMake user responsible for allocating `struct bitmap's.
2004-08-29 Ben PfaffFix grouping (sigh).
2004-08-29 Ben PfaffPrototype hex_dump().
2004-08-29 Ben PfaffFix snprintf() return value.
2004-08-29 Ben PfaffAdd snprintf(), vsnprintf().
2004-08-29 Ben Pfaff(printf_integer) Fix handling of precision. Improve...
2004-08-27 Ben Pfaffprintk() disables interrupts.
2004-08-27 Ben Pfaff(printf_integer) Fix handling of # flag. This time...
2004-08-26 Ben PfaffChange list_elem from a struct to a typedef to make...
2004-08-26 Ben PfaffAdd ROUND_DOWN macro.
2004-08-26 Ben PfaffInitial hash table implementation.
2004-08-18 Ben PfaffWorking backdoor filesystem implementation.
2004-08-18 Ben PfaffAdd memcmp().
2004-08-18 Ben PfaffMake debug.h non-idempotent, like <assert.h>.
next