POSIX标准定义了信号量接口如下,常常用于线程间同步。
#include <semaphore.h>int sem_init(sem_t *sem, int pshared, unsigned int value);
int sem_destroy(sem_t *sem);
int sem_post(sem_t *sem);
int sem_wait(sem_t *sem);
sem_init()在sem指向的地址…
1.Nios II Application and BSP form Template
BSP:board support package(板级支持包) 2.Nios II Sotware Examples
SOPC Information File name:选择项目文件夹下的 .sopcinfo 文件
Project name:自定义名称
Project location:Use default locatio…