diff options
| author | Qiuwen Lu <[email protected]> | 2016-09-22 18:52:34 +0800 |
|---|---|---|
| committer | Qiuwen Lu <[email protected]> | 2016-09-22 18:52:34 +0800 |
| commit | ace615310eada6498e9c439e606ee224c2b30fab (patch) | |
| tree | e4163608bb196c259049681a8cbd6f171b969f09 | |
| parent | f60d01b6cbbf31167cb44b923c6f4976ad0d7e6b (diff) | |
去掉rx_sample中的sleep语句v4.0.0-rc0-20160922v4.0.0-20160922
| -rw-r--r-- | examples/pag/rx_sample.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/pag/rx_sample.c b/examples/pag/rx_sample.c index 51e1ced..7dbc8fc 100644 --- a/examples/pag/rx_sample.c +++ b/examples/pag/rx_sample.c @@ -357,14 +357,14 @@ void rx_thread(void *ptr) if (glob_get_frame || (glob_filep != NULL)) { pkt = pag_get_frame(sid); if (!pkt) { - usleep(500); + //usleep(500); continue; } len = pag_get_frame_length(sid); } else { pkt = pag_get(sid); if (!pkt) { - usleep(500); + //usleep(500); continue; } len = get_ip_len(pkt); |
