osef test error
This commit is contained in:
parent
21cb319b25
commit
9cf444c47e
BIN
Code-C/main
BIN
Code-C/main
Binary file not shown.
|
@ -53,6 +53,8 @@ void *threadCalculBoth(void *vargp){
|
||||||
char* fileName;
|
char* fileName;
|
||||||
while(rawDataWriteFlag){
|
while(rawDataWriteFlag){
|
||||||
while(queueGetNextE(rawDataQueue) != NULL){
|
while(queueGetNextE(rawDataQueue) != NULL){
|
||||||
|
|
||||||
|
printf("ertyu\n");
|
||||||
rawDataQueue = queueGetNextE(rawDataQueue);
|
rawDataQueue = queueGetNextE(rawDataQueue);
|
||||||
fileName = queueGetTabChar(rawDataQueue);
|
fileName = queueGetTabChar(rawDataQueue);
|
||||||
powerFunction(fileName, NULL);
|
powerFunction(fileName, NULL);
|
||||||
|
@ -108,10 +110,9 @@ int main(int argc , char** argv){
|
||||||
period = 1 / freqEch;
|
period = 1 / freqEch;
|
||||||
invTimeBandWidth = 1 /(nRow * period);
|
invTimeBandWidth = 1 /(nRow * period);
|
||||||
firstRawDataQueue = queueCreateEmpty(); // change this for create empty
|
firstRawDataQueue = queueCreateEmpty(); // change this for create empty
|
||||||
|
|
||||||
pthread_t rawData;
|
pthread_t rawData;
|
||||||
pthread_create(&rawData , NULL, threadSimulateFlux, (void *)&rawData);
|
pthread_create(&rawData , NULL, threadSimulateFlux, (void *)&rawData);
|
||||||
|
|
||||||
pthread_t calcul;
|
pthread_t calcul;
|
||||||
pthread_create(&calcul , NULL, threadCalculBoth, (void *)&calcul);
|
pthread_create(&calcul , NULL, threadCalculBoth, (void *)&calcul);
|
||||||
|
|
||||||
|
|
|
@ -36,8 +36,10 @@ void powerFunction(char* rawDataFileName, double **pw){
|
||||||
if(p !=NULL){
|
if(p !=NULL){
|
||||||
if(pw == NULL){
|
if(pw == NULL){
|
||||||
powerCalculation(p,pww);
|
powerCalculation(p,pww);
|
||||||
|
|
||||||
}else{
|
}else{
|
||||||
powerCalculation(p,*pw);
|
powerCalculation(p,*pw);
|
||||||
|
|
||||||
}
|
}
|
||||||
appendDataInFile("powerData.csv",*pw,nCol-1);
|
appendDataInFile("powerData.csv",*pw,nCol-1);
|
||||||
freeArray(p,nRow);
|
freeArray(p,nRow);
|
||||||
|
|
Loading…
Reference in a new issue