所以我有一个RTC连接到我的beaglebone上它通过cat /sys/class/rtc/rtx(x)/time file
工作正常,但是我的C
代码来监控时间有一个我似乎无法解决的错误
if ((rtc_fd = open(RTC, O_RDONLY, 444)) < 0)
REPORT_ERROR("open(RTC)");
其中RTC是/dev/rtc1
的路径。 REPORT_ERROR
是用于报告自定义错误的宏函数。
无论如何,我在for
循环之前运行此代码,迭代次数为10次,并且输出到日志文件。我总是得到strerror(perror)
消息:
设备或资源繁忙
但是它仍然继续给我10个正确的输出。
我最后也在使用close()
。
是什么给出了?
编辑:也许我应该补充一点,这是在守护进程中运行的,我在循环期间使用iocotl()
和RTC_RD_TIME
。
#define REPORT_ERROR(X) do {\
fprintf(log,"err@ "X": %s@ %s:%d\n",\
strerror(errno), __FILE__, __LINE__ - 1);\
exit(EXIT_FAILURE);\
} while(0)
#define RTC "/dev/rtc1"
int main(void)
{
int rtc_fd;
FILE *log;
struct rtc_time tm;
if ((log = fopen(LOG_FILE, "a+")) == NULL)
exit(EXIT_FAILURE);
if ((dup2(fileno(log), STDERR_FILENO)) < 0)
REPORT_ERROR("dup2()");
if ((rtc_fd = open(RTC, O_RDONLY, 444)) < 0)
REPORT_ERROR("open(RTC)");
/* Main loop */
for (int i = 0; i < 10; ++i)
{
if ((ioctl(rtc_fd, RTC_RD_TIME, &rtctime)) != 0)
REPORT_ERROR("ioctl(rtc_fd)");
fprintf(log, "%02d:%02d:%02.lf %d-%d-%d\n", tm.hour, tm.minute,
tm.second, tm.mon + 1, tm.mday, tm.year + 1900);
sleep(1);
}
close(rtc_fd);
return 0;
}
输出:
err@ open(RTC): Device or resource busy@ ha-daemon.c:80
05:06:09 2-12-2015
05:06:10 2-12-2015
05:06:11 2-12-2015
05:06:12 2-12-2015
05:06:13 2-12-2015
05:06:14 2-12-2015
05:06:15 2-12-2015
05:06:16 2-12-2015
05:06:17 2-12-2015
05:06:18 2-12-2015
答案 0 :(得分:1)
这不是一个真正的答案,但我对这个问题的编辑被评论拒绝,我应该将其作为答案发布。所以就这样了。
发布的代码无法编译。我最低限度地修改它,以便它编译没有警告,我可以测试它。以下是更改列表。其中一些可能特定于我的环境(gcc 4.8.1 / Ubuntu Linux 14.04 / x86-64):
#include
s LOG_FILE
,将其定义为/dev/tty
只是让测试更容易/dev/rtc1
替换为/dev/rtc0
(我没有rtc1)&rtctime
替换&tm
(ioctl的最后一个参数),否则它既没有意义也没有编译tm_hour
,tm_min
等。以下是修改后的代码:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <linux/rtc.h>
#define LOG_FILE "/dev/tty"
#define REPORT_ERROR(X) do {\
fprintf(log,"err@ "X": %s@ %s:%d\n",\
strerror(errno), __FILE__, __LINE__ - 1);\
exit(EXIT_FAILURE);\
} while(0)
#define RTC "/dev/rtc0"
int main(void)
{
int rtc_fd;
FILE *log;
struct rtc_time tm;
if ((log = fopen(LOG_FILE, "a+")) == NULL)
exit(EXIT_FAILURE);
if ((dup2(fileno(log), STDERR_FILENO)) < 0)
REPORT_ERROR("dup2()");
if ((rtc_fd = open(RTC, O_RDONLY, 444)) < 0)
REPORT_ERROR("open(RTC)");
/* Main loop */
for (int i = 0; i < 10; ++i)
{
if ((ioctl(rtc_fd, RTC_RD_TIME, &tm)) != 0)
REPORT_ERROR("ioctl(rtc_fd)");
fprintf(log, "%02d:%02d:%02d %d-%d-%d\n", tm.tm_hour, tm.tm_min,
tm.tm_sec, tm.tm_mon + 1, tm.tm_mday, tm.tm_year + 1900);
sleep(1);
}
close(rtc_fd);
return 0;
}
测试结果:它按预期编译和工作。它运行时没有错误消息,或者它打印错误消息并立即退出。如果程序的一个实例正在运行,则启动第二个实例会使&#34;设备或资源忙碌&#34;错误消息,正如所料。
换句话说,&#34;适用于我&#34;。