uti: Add/Modify test programs
Change-Id: I27a39d6b11af5243f93d07c31c2ef80f6727dd53
This commit is contained in:
81
test/uti/CT17.c
Normal file
81
test/uti/CT17.c
Normal file
@ -0,0 +1,81 @@
|
||||
#define _GNU_SOURCE
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <pthread.h>
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/syscall.h>
|
||||
#include <sys/mman.h>
|
||||
#include <signal.h>
|
||||
|
||||
pthread_mutex_t mutex;
|
||||
pthread_cond_t cond;
|
||||
int passed, flag;
|
||||
pthread_t thr;
|
||||
|
||||
void *util_thread(void *arg) {
|
||||
int rc;
|
||||
unsigned long mem;
|
||||
|
||||
rc = syscall(732);
|
||||
if (rc == -1)
|
||||
fprintf(stderr, "CT17100 running on Linux OK\n");
|
||||
else {
|
||||
fprintf(stderr, "CT17100 running on Linux NG (%d)\n", rc);
|
||||
}
|
||||
|
||||
while (!passed) {
|
||||
asm volatile("pause" ::: "memory");
|
||||
}
|
||||
usleep(100 * 1000UL); /* Send debug message through serial takes 0.05 sec */
|
||||
|
||||
pthread_mutex_lock(&mutex);
|
||||
flag = 1;
|
||||
pthread_cond_signal(&cond);
|
||||
pthread_mutex_unlock(&mutex);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
int rc;
|
||||
unsigned long mem;
|
||||
|
||||
pthread_mutex_init(&mutex, NULL);
|
||||
pthread_cond_init(&cond, NULL);
|
||||
|
||||
fprintf(stderr, "CT17001 futex START\n");
|
||||
|
||||
rc = syscall(731, 1, NULL);
|
||||
if (rc) {
|
||||
fprintf(stderr, "CT17002 util_indicate_clone NG (rc=%d, errno=%d)\n", rc, errno);
|
||||
fflush(stderr);
|
||||
} else {
|
||||
fprintf(stderr, "CT17002 util_indicate_clone OK\n");
|
||||
}
|
||||
|
||||
rc = pthread_create(&thr, NULL, util_thread, NULL);
|
||||
if(rc){
|
||||
fprintf(stderr, "pthread_create: %d\n", rc);
|
||||
exit(1);
|
||||
}
|
||||
fprintf(stderr, "CT17003 pthread_create OK\n");
|
||||
|
||||
passed = 1;
|
||||
pthread_mutex_lock(&mutex);
|
||||
fprintf(stderr, "CT17004 lock on %p OK\n", &mutex);
|
||||
while(!flag) {
|
||||
pthread_cond_wait(&cond, &mutex);
|
||||
fprintf(stderr, "CT17005 wake on %p OK\n", &cond);
|
||||
}
|
||||
flag = 0;
|
||||
|
||||
pthread_mutex_unlock(&mutex);
|
||||
|
||||
pthread_join(thr, NULL);
|
||||
fprintf(stderr, "CT17006 pthread_join OK\n");
|
||||
|
||||
fprintf(stderr, "CT17007 END\n");
|
||||
exit(0);
|
||||
}
|
||||
Reference in New Issue
Block a user