Entries from 2006-01-25 to 1 day

cygwinでpthread

#include <stdio.h> #include <pthread.h> #include <unistd.h> void* test(void* param) { for (int i = 0; i < 10; i++) { printf("[%d]", i); fflush(stdout); } return NULL; } int main(int argc, char** argv) { pthread_t tid; int param; pthread_create(&tid, NULL, test, (void*)</unistd.h></pthread.h></stdio.h>…

はてなRSS上でブックマークのコメントが表示されるようになりました

はてなRSS上でブックマークのコメントが表示されるようになりました。 JavaScriptの難しい部分はid:wanparkが作ってくれました。 機能の詳細は はてな各サービスの機能変更、お知らせなど - はてなRSS日記 - ブックマークコメントをその場で表示する機能につ…