NG
if (fd = open("test.txt", O_RDONLY) == -1) {
printf("open error\n");
}
read(fd, buf, size); // No response?(fd == 0)OK
| Peep a web page through the spyhole! |
| This is the world time clock user interface. | |
| You can check current time at one view. | |
| This UI is used for the folloing application. | |
| Loclock: http://www.ionstage.org/loclock/index.html | |
| 2013/09/12 | |
| - modify the source code |
| - Draw by mouse drag (compatible with touch) | |
| - Export your drawing to png format | |
| 2013/9/12 | |
| - modify the source code |
| Play a music video and related one after another automatically |
| ListPlayer is a video player with a playlist. | |
| You can create, play and share your video playlist. | |
| - Search videos and add them to your playlist | |
| - Generate your playlist link to share with others |
| Select all of the text in the field on focus |
| git filter-branch -f --env-filter "GIT_AUTHOR_NAME='name'; GIT_AUTHOR_EMAIL='name@example.com'; GIT_COMMITTER_NAME='name'; GIT_COMMITTER_EMAIL='name@example.com';" HEAD |
| git archive --format=zip --prefix=master/ master `git diff --name-only HEAD master` -o master.zip | |
| git archive --format=zip --prefix=current/ HEAD `git diff --name-only HEAD master` -o current.zip |
NG
if (fd = open("test.txt", O_RDONLY) == -1) {
printf("open error\n");
}
read(fd, buf, size); // No response?(fd == 0)OK
| int T::method() { | |
| return 0; | |
| } | |
| // static member function | |
| void *T::threadStart(void *obj) { | |
| int ret; | |
| T *me = reinterpret_cast<T *>(obj); | |
| ret = me->method(); | |
| return (void *)ret; |