在这个练习(生产者 - 消费者)中,3 个生产者各有一个线程并产生质数。但是当我运行程序时,消耗的第一个素数不是它产生的第一个素数,所以我没有得到预期的输出。你能帮我找到并纠正错误吗?
这是带有模式的主文件:
#include <stdio.h>
#include "oslab_lowlevel_h.h"
int NextPrime( int );
#define FIFO_SIZE 10
/* Declare a structure to hold a producer's starting value,
* and an integer for the Producer-number (Producer 1, 2 or 3). */
struct Prod {
int startvalue;
int id;
};
unsigned int stack1[0x400]; /* Stack for thread 1 */
unsigned int stack2[0x400]; /* Stack for thread 2 */
unsigned int stack3[0x400]; /* Stack for thread 3 */
unsigned int stack4[0x400]; /* Stack for thread 4 */
unsigned int stack5[0x400]; /* Stack for thread 5 */
/* Declare variables for the First-In-First-Out Queue */
int Fifo[FIFO_SIZE]; /* Array holding FIFO queue data. */
int rdaddr; /* Next unread entry when reading from queue. */
int wraddr; /* Next free entry when writing into queue. */
/* Declaration of semaphore variables.
*
* Sorry for the lack of comments, but part of the purpose of the lab
* is that you should find things out by reading the actual code. */
int rdmutex = 1;
int wrmutex = 1;
int nrempty = FIFO_SIZE;
int nrfull = 0;
/*
* fatal_error
*
* Print a message, then stop execution.
* This function never returns; after printing
* the message, it enters an infinite loop.
*/
void fatal_error( char * msg)
{
printf( "\nFatal error: %s\n", msg );
while( 1 );
}
/*
* Sleep
*
* Delay execution by keeping the CPU busy for a while,
* counting down to zero.
*/
void Sleep (int n)
{
while (n--);
}
/*
* Signal
*
* Semaphore operation: add to semaphore,
* possibly allowing other threads to continue.
*/
void Signal( int *sem )
{
/* We must disable interrupts, since the operation
* *sem = *sem + 1
* will require several machine instructions on Nios2.
* If we have a timer-interrupt and a thread-switch
* somewhere in the middle of those machine instructions,
* the semaphore will be updated twice, or not at all, or
* in some other erroneous way.
*/
oslab_begin_critical_region();
*sem = *sem + 1;
oslab_end_critical_region();
}
/*
* Wait
*
* Sempahore operation: check semaphore, and
* wait if the semaphore value is zero or less.
*/
void Wait( int *sem )
{
/* Disable interrupts. */
oslab_begin_critical_region();
while ( *sem <= 0 )
{
/* If we should wait, enable interrupts again. */
oslab_end_critical_region();
// oslab_yield(); /* Perhaps we should yield here? */
/* Disable interrupts again before next iteration in loop. */
oslab_begin_critical_region();
}
/* We have waited long enough - the semaphore-value is now
* greater than zero. Decrease it. */
*sem = *sem - 1;
/* Enable interrupts again. */
oslab_end_critical_region();
}
/*
* PutFifo
*
* Insert an integer into the FIFO queue.
*/
void PutFifo( int tal )
{
// Wait (&nrempty); /* Wait for nrempty? */
// Wait (&wrmutex); /* Wait for wrmutex? */
Fifo[wraddr] = tal; /* Write to FIFO array. */
// printf("\nPutFifo: %d ", tal); /* Optional debug output */
// printf("\nwraddr = %d ", wraddr); /* Optional debug output. */
wraddr = wraddr + 1; /* Increase index into FIFO array,
to point to the next free position. */
/* Wrap around the index, if it has reached the end of the array. */
if (wraddr == FIFO_SIZE ) wraddr = 0;
// Signal (&wrmutex); /* Signal wrmutex? */
// Signal (&nrfull); /* Signal nrfull? */
}
/*
* GetFifo
*
* Extract the next integer from the FIFO queue.
*/
int GetFifo( void )
{
int retval; /* Declare temporary for return value. */
// Wait (&nrfull); /* Wait for nrfull? */
// Wait (&rdmutex); /* Wait for rdmutex? */
retval = Fifo[rdaddr]; /* Get value from FIFO array. */
// printf("\nGetFifo: %d ", retval); /* Optional debug output */
// printf("\nrdaddr = %d ", rdaddr); /* Optional debug output */
rdaddr = rdaddr + 1; /* Increase index into FIFO array,
to point to the next free position. */
/* Wrap around the index, if it has reached the end of the array. */
if (rdaddr == FIFO_SIZE ) rdaddr = 0;
// Signal (&rdmutex); /* Signal rdmutex? */
// Signal (&nrempty); /* Signal nrempty? */
return (retval); /* Return value fetched from FIFO. */
}
/*
* NextPrime
*
* Return the first prime number larger than the integer
* given as a parameter. The integer must be positive.
*
* *** NextPrime is outside the focus of this assignment. ***
* The definition of NextPrime can be found at the end of this file.
* The short declaration here is required by the compiler.
*/
int NextPrime( int );
void Producer( struct Prod * prodstruct )
{
int next; /* Will hold the prime we just produced. */
int prodid; /* Tells whether we are producer 1, 2 or 3. */
next = prodstruct -> startvalue; /* Get starting value from parameter. */
prodid = prodstruct -> id;/* Get producer number from parameter. */
while( 1 ) /* Loop forever. */
{
next = NextPrime (next);/* Produce a new prime. */
printf("\nNext Prime from producer %d is %d",prodid,next); /* Informational output. */
PutFifo(next); /* Write prime into FIFO. */
// oslab_yield(); /* Perhaps we should yield here? */
}
}
void Consumer( int * tal )
{
int next; /* Will hold the prime we are to consume. */
int consid = *tal; /* Tells whether we are consumer 1 or 2. */
while( 1 ) /* Loop forever. */
{
next = GetFifo(); /* Get a newly produced prime from the FIFO. */
printf("\nConsumer %d gets Prime %d ",consid, next); /* Informational output. */
Sleep(2000); /* Symbolic work. */
// oslab_yield(); /* Perhaps we should yield here? */
}
}
int main( void )
{
int new_thread_id; /* Thread ID variable. */
struct Prod prod1, prod2, prod3; /* Producer starting-values. */
int cons1, cons2; /* Consumer starting-values. */
rdaddr = 0; /* FIFO initialization. */
wraddr = 0; /* FIFO initialization. */
printf("\nSystem starting...");
prod1.startvalue = 2000;
prod1.id = 1;
prod2.startvalue = 5000;
prod2.id = 2;
prod3.startvalue = 8000;
prod3.id = 3;
cons1 = 1;
cons2 = 2;
new_thread_id = oslab_create_thread((void *)Producer, &prod1, &(stack1[0x3ff]));
if( new_thread_id < 0 ) fatal_error( "cannot start Producer 1" );
printf("\nProducer %d is created with thread-ID %d", prod1.id, new_thread_id);
new_thread_id = oslab_create_thread((void *)Producer, &prod2, &(stack2[0x3ff]));
if( new_thread_id < 0 ) fatal_error( "cannot start Producer 2" );
printf("\nProducer %d is created with thread-ID %d", prod2.id, new_thread_id);
new_thread_id = oslab_create_thread((void *)Producer, &prod3, &(stack3[0x3ff]));
if( new_thread_id < 0 ) fatal_error( "cannot start Producer 3" );
printf("\nProducer %d is created with thread-ID %d", prod3.id, new_thread_id);
new_thread_id = oslab_create_thread((void *)Consumer, &cons1, &(stack4[0x3ff]));
if( new_thread_id < 0 ) fatal_error( "cannot start Consumer 1" );
printf("\nConsumer %d is created with thread-ID %d", cons1, new_thread_id);
new_thread_id = oslab_create_thread((void *)Consumer, &cons2, &(stack5[0x3ff]));
if( new_thread_id < 0 ) fatal_error( "cannot start Consumer 2" );
printf("\nConsumer %d is created with thread-ID %d", cons2, new_thread_id);
oslab_idle(); /* Must be called here! */
}
/*
* NextPrime
*
* Return the first prime number larger than the integer
* given as a parameter. The integer must be positive.
*/
#define PRIME_FALSE 0 /* Constant to help readability. */
#define PRIME_TRUE 1 /* Constant to help readability. */
int NextPrime( int inval )
{
int perhapsprime; /* Holds a tentative prime while we check it. */
int testfactor; /* Holds various factors for which we test perhapsprime. */
int found; /* Flag, false until we find a prime. */
if (inval < 3 ) /* Initial sanity check of parameter. */
{
if(inval <= 0) return(1); /* Return 1 for zero or negative input. */
if(inval == 1) return(2); /* Easy special case. */
if(inval == 2) return(3); /* Easy special case. */
}
else
{
/* Testing an even number for primeness is pointless, since
* all even numbers are divisible by 2. Therefore, we make sure
* that perhapsprime is larger than the parameter, and odd. */
perhapsprime = ( inval + 1 ) | 1 ;
}
/* While prime not found, loop. */
for( found = PRIME_FALSE; found != PRIME_TRUE; perhapsprime += 2 )
{
/* Check factors from 3 up to perhapsprime/2. */
for( testfactor = 3; testfactor <= (perhapsprime >> 1) + 1; testfactor += 1 )
{
found = PRIME_TRUE; /* Assume we will find a prime. */
if( (perhapsprime % testfactor) == 0 ) /* If testfactor divides perhapsprime... */
{
found = PRIME_FALSE; /* ...then, perhapsprime was non-prime. */
goto check_next_prime; /* Break the inner loop, go test a new perhapsprime. */
}
}
check_next_prime:; /* This label is used to break the inner loop. */
if( found == PRIME_TRUE ) /* If the loop ended normally, we found a prime. */
{
return( perhapsprime ); /* Return the prime we found. */
}
}
return( perhapsprime ); /* When the loop ends, perhapsprime is a real prime. */
}
其余文件可在此处获得。
当我运行代码时,我从生产者那里得到了预期的输出,但我没有得到消费者的预期输出:
System starting...
Producer 1 is created with thread-ID 1
Producer 2 is created with thread-ID 2
Producer 3 is created with thread-ID 3
Consumer 1 is created with thread-ID 4
Consumer 2 is created with thread-ID 5
#### Thread yielded after using 1 tick.
Performing thread-switch number 1. The system has been running for 1 ticks.
Switching from thread-ID 0 to thread-ID 1.
Next Prime from producer 1 is 2003
PutFifo: 2003
wraddr = 0
Next Prime from producer 1 is 2011
PutFifo: 2011
wraddr = 1
Next Prime from producer 1 is 2017
PutFifo: 2017
wraddr = 2
Next Prime from producer 1 is 2027
PutFifo: 2027
wraddr = 3
Next Prime from producer 1 is 2029
PutFifo: 2029
wraddr = 4
Next Prime from producer 1 is 2039
PutFifo: 2039
wraddr = 5
Next Prime from producer 1 is 2053
PutFifo: 2053
wraddr = 6
Next Prime from producer 1 is 2063
PutFifo: 2063
wraddr = 7
Next Prime from producer 1 is 2069
PutFifo: 2069
wraddr = 8
Next Prime from producer 1 is 2081
PutFifo: 2081
wraddr = 9
Next Prime from producer 1 is 2083
PutFifo: 2083
wraddr = 0
Next Prime from producer 1 is 2087
PutFifo: 2087
wraddr = 1
Next Prime from producer 1 is 2089
PutFifo: 2089
wraddr = 2
Next Prime from producer 1 is 2099
PutFifo: 2099
wraddr = 3
Next Prime from producer 1 is 2111
PutFifo: 2111
wraddr = 4
Next Prime from producer 1 is 2113
PutFifo: 2113
wraddr = 5
Next Prime from producer 1 is 2129
PutFifo: 2129
wraddr = 6
Next Prime from producer 1 is 2131
PutFifo: 2131
wraddr = 7
Next Prime from producer 1 is 2137
PutFifo: 2137
wraddr = 8
Next Prime from producer 1 is 2141
PutFifo: 2141
wraddr = 9
Next Prime from producer 1 is 2143
PutFifo: 2143
wraddr = 0
Next Prime from producer 1 is 2153
PutFifo: 2153
wraddr = 1
Performing thread-switch number 2. The system has been running for 101 ticks.
Switching from thread-ID 1 to thread-ID 2.
Next Prime from producer 2 is 5003
PutFifo: 5003
wraddr = 2
Next Prime from producer 2 is 5009
PutFifo: 5009
wraddr = 3
Next Prime from producer 2 is 5011
PutFifo: 5011
wraddr = 4
Next Prime from producer 2 is 5021
PutFifo: 5021
wraddr = 5
Next Prime from producer 2 is 5023
PutFifo: 5023
wraddr = 6
Next Prime from producer 2 is 5039
PutFifo: 5039
wraddr = 7
Next Prime from producer 2 is 5051
PutFifo: 5051
wraddr = 8
Next Prime from producer 2 is 5059
PutFifo: 5059
wraddr = 9
Next Prime from producer 2 is 5077
PutFifo: 5077
wraddr = 0
Next Prime from producer 2 is 5081
PutFifo: 5081
wraddr = 1
Performing thread-switch number 3. The system has been running for 201 ticks.
Switching from thread-ID 2 to thread-ID 3.
Next Prime from producer 3 is 8009
PutFifo: 8009
wraddr = 2
Next Prime from producer 3 is 8011
PutFifo: 8011
wraddr = 3
Next Prime from producer 3 is 8017
PutFifo: 8017
wraddr = 4
Next Prime from producer 3 is 8039
PutFifo: 8039
wraddr = 5
Next Prime from producer 3 is 8053
PutFifo: 8053
wraddr = 6
Next Prime from producer 3 is 8059
PutFifo: 8059
wraddr = 7
Performing thread-switch number 4. The system has been running for 301 ticks.
Switching from thread-ID 3 to thread-ID 4.
GetFifo: 5077
rdaddr = 0
Consumer 1 gets Prime 5077
GetFifo: 5081
rdaddr = 1
Consumer 1 gets Prime 5081
GetFifo: 8009
rdaddr = 2
Consumer 1 gets Prime 8009
GetFifo: 8011
rdaddr = 3
Consumer 1 gets Prime 8011
GetFifo: 8017
rdaddr = 4
Consumer 1 gets Prime 8017
GetFifo: 8039
rdaddr = 5
Consumer 1 gets Prime 8039
GetFifo: 8053
rdaddr = 6
Consumer 1 gets Prime 8053
GetFifo: 8059
rdaddr = 7
Consumer 1 gets Prime 8059
GetFifo: 5051
rdaddr = 8
Consumer 1 gets Prime 5051
GetFifo: 5059
rdaddr = 9
Consumer 1 gets Prime 5059
GetFifo: 5077
rdaddr = 0
Consumer 1 gets Prime 5077
GetFifo: 5081
你能告诉我为什么前 30 个素数会被覆盖,而我所做的只是遵循规范并从代码中删除注释以激活教师为我们准备的学习内容吗?由于没有得到任何好的帮助,我已经好几个月没能完成这个练习了。前 30 个素数被神秘地覆盖,程序不应更改(这是家庭作业)。我问了教练,他没有,说我正在使用更新版本的软件。我可以尝试使用旧版本的软件,但这似乎不是一个可能的解决方案。
更新
我能想到的策略是开始使用调试器并在执行期间检查 FIFO ADT。我没有太多使用 gdb 的经验,所以如果可以,请帮助我。