- 论坛徽章:
- 0
|
本人在CentOs5.3中试过,就是一直死循环,郁闷。
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <unistd.h>
- #include <signal.h>
- #include <pwd.h>
- #include <error.h>
- static void my_alarm(int signo)
- {
- struct passwd *rootptr;
- printf("in signal handler\n");
- if ((rootptr = getpwnam("root")) == NULL)
- {
- printf("getpwnam(root) error");
- }
- alarm(1);
- return;
- }
- int main(void)
- {
- struct passwd *ptr;
- signal(SIGALRM, my_alarm);
- while(1)
- {
- if ((ptr = getpwnam("foxhunt")) == NULL)
- {
- printf("getpwnam error\n");
- }
- if (strcmp(ptr->pw_name, "foxhunt") != 0)
- {
- printf("return value corrupted!, pw_name=%s\n", ptr->pw_name);
- }
- }
- return 0;
- }
复制代码 |
|