aboutsummaryrefslogtreecommitdiff
path: root/example-led
diff options
context:
space:
mode:
authorNIIBE Yutaka <gniibe@fsij.org>2013-05-28 10:27:22 +0900
committerNIIBE Yutaka <gniibe@fsij.org>2013-05-28 10:27:22 +0900
commit699344840b7bebfeedccdda79a1144fc576b7ceb (patch)
tree1962ec3e70eb59ae288ba6a39341c1b6d3e331a4 /example-led
parent6d568f91847ef8a35036cff25e1e8987c1b23763 (diff)
Implement cancellation. Rename, etc.
Diffstat (limited to 'example-led')
-rw-r--r--example-led/sample.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/example-led/sample.c b/example-led/sample.c
index c4ca7bf..8c994ce 100644
--- a/example-led/sample.c
+++ b/example-led/sample.c
@@ -22,9 +22,9 @@ pwm (void *arg)
while (1)
{
set_led (u&v);
- chopstx_usleep (m);
+ chopstx_usec_wait (m);
set_led (0);
- chopstx_usleep (100-m);
+ chopstx_usec_wait (100-m);
}
return NULL;
@@ -42,9 +42,9 @@ blk (void *arg)
while (1)
{
v = 0;
- chopstx_usleep (200*1000);
+ chopstx_usec_wait (200*1000);
v = 1;
- chopstx_usleep (200*1000);
+ chopstx_usec_wait (200*1000);
}
return NULL;
@@ -89,7 +89,7 @@ main (int argc, const char *argv[])
chopstx_create (&thd, &attr, blk, NULL);
- chopstx_usleep (200*1000);
+ chopstx_usec_wait (200*1000);
chopstx_mutex_lock (&mtx);
chopstx_cond_signal (&cnd0);
@@ -99,7 +99,7 @@ main (int argc, const char *argv[])
while (1)
{
u ^= 1;
- chopstx_usleep (200*1000*6);
+ chopstx_usec_wait (200*1000*6);
}
return 0;