C11

c11対応版mruby-thread作るので完全forkしたい

githubでforkしたプロジェクトを完全にforkするにはどうするのか? P.S. githubに新しくリポジトリつくってpushすればと回答頂く。ん、そんな気がする^^; P.S. 2015 Oct 10 出来たかな? https://github.com/murasesyuka/mruby-c11thread 多分rubyのthrea…

mruby-threadのwin32対応メモ

mruby-threadがpthreadのみのラッパーだったので、 c11のthreads.hを試したメモ - 会者定離で以降 上記参照のc11 threads emulation libraryを使って、win32thread/pthreadラッパーに拡張した*1。 GitHub - murasesyuka/mruby-thread 課題 windowsでのmruby…

use c11 thread emulate library on Mesa 3D Graphics Library

C11

my local gcc 4.9.2 is not support to "threads.h" yet. $ make gcc -Wall -std=c11 main.c -pthread main.c:2:21: fatal error: threads.h: No such file or directory #include <threads.h> ^ compilation terminated. Makefile:5: recipe for target 'test' failed </threads.h>…

c11のthreads.hを試したメモ

c11にthreads.hがあるとtweetで知ったので試してみた記録。 で、c11/threads.hググっていたら、まだgcc/glibc等にあまり実装されていないようで win32thread/pthread等でのエミュレーションライブラリが有るようなのでためしてみる。 上記のc11のエミュレー…