2008-08-17から1日間の記事一覧

MacOS Xのfork/execが遅い件について

オフトピ*1だが、「libtaskとPthreadの比較」で軽く触れた、MacOS Xのforkが遅い件についてもう少し調べてみた。前回使ったプログラムはこんな感じのもの。 #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/time.h> enum { ITER = 100 }; void do_fork(void) { pid_t pid; </sys/time.h></unistd.h></stdlib.h></stdio.h>…

ACM SIGOPS Operating Systems Review

ACM SIGOPS Operating Systems Reviewの最新号の特集が「Research and developments in the Linux kernel 」ということで、Linuxカーネル関連の論文が集められている*1。その中に、「Plan 9 authentication in Linux」*2という論文が収録されている。セキュ…