我有一个问题要解决,但它给了我错误:
2009-EE-182-Part2.c: In function ‘main’:
2009-EE-182-Part2.c:35:13: error: expected identifier or ‘(’ before ‘->’ token
2009-EE-182-Part2.c:40:22: error: expected identifier or ‘(’ before ‘->’ token
2009-EE-182-Part2.c:41:14: error: expected identifier or ‘(’ before ‘->’ token
2009-EE-182-Part2.c:42:22: error: expected expression before ‘shared_data’
2009-EE-182-Part2.c:44:15: error: expected identifier or ‘(’ before ‘->’ token
2009-EE-182-Part2.c:54:15: error: expected expression before ‘shared_data’
2009-EE-182-Part2.c:55:19: error: expected expression before ‘shared_data’
代码是:
# include <stdio.h>
# include <sys/shm.h>
# include <sys/stat.h>
# include <sys/types.h>
# include <unistd.h>
# define MAX_SEQUENCE 10
typedef struct{
long fib_sequence[MAX_SEQUENCE];
int sequence_size;
} shared_data;
char* shared_memory; /* a pointer to the shared memory segment */
int main()
{
int a,b,m,n,i,j;
a=0; b=1;
printf("Enter the number of a Fibonacci Sequence:\n");
scanf("%d", &m);
if (m < 0)
printf("Please enter a non-negative integer\n");
else if (m> MAX_SEQUENCE)
printf("Please enter an integer less than 10\n");
int segment_id; /* the identifier for the shared memory segment */
int segment_size = sizeof(shared_data); /* the size (in bytes) of the shared memory segment */
segment_id = shmget(IPC_PRIVATE, segment_size, S_IRUSR | S_IWUSR); /** allocate a shared memory segment */
shared_data *shared_memory = shmat(segment_id, NULL, 0); /** attach the shared memory segment */
printf("\nshared memory segment %d attached at address %p\n", segment_id, shared_memory);
shared_data->sequence_size = m;
pid_t pid;
pid = fork();
if (pid == 0){
printf("Child is producing the Fibonacci Sequence...\n");
shared_data->fib_sequence[0] = a;
shared_data->fib_sequence[1] = b;
for (i=2;i<shared_data->sequence_size;i++){
n=a+b;
shared_data->fib_sequence[i] = n;
a=b;
b=n;
}
printf("\nChild ends\n");
}
else{
printf("Parent is waiting for child to complete...\n");
wait(NULL);
printf("Parent ends\n");
for(i=0;i<= shared_data->sequence_size;i++)
printf("%ld ", shared_data->fib_sequence[i]);
}
/**printf("%s \n", shared_memory); now print out the string from shared memory */
/** now detach the shared memory segment */
if ( shmdt(shared_memory) == -1) {
fprintf(stderr, "Unable to detach\n");
}
/** now remove the shared memory segment */
shmctl(segment_id, IPC_RMID, NULL);
return 0;
}
声明是“设计斐波那契程序的一种方法是在父进程和子进程之间建立一个共享内存段。这种技术允许子进程将斐波那契数列的内容写入共享内存段并让父进程输出序列当子进程完成时。由于内存是共享的,因此子进程所做的任何更改也将反映在父进程中。该程序将使用 POSIX 共享内存构造,如 http://graphics.im.ntu.edu.tw中所述/~robin/courses/os07/code/03proc/shm-posix.c 该程序首先需要为共享内存段创建数据结构。使用结构最容易做到这一点。该数据结构将包含两项: 1. 一个大小为 MAX_SEQUENCE 的固定大小的数组,它将保存斐波那契值和 2. 子进程要生成的序列的大小,即 sequence_size,其中 sequence_size ≤ MAX_SEQUENCE。
这些项目可以在结构中表示如下:
# define MAX_SEQUENCE 10
typedef struct{
long fib_sequence[MAX_SEQUENCE];
int sequence_size;
} shared_data;
父进程将通过以下步骤进行:接受命令行传递的参数,并进行错误检查,确保参数≤MAX_SEQUENCE。湾。创建一个大小为 shared_data 的共享内存段。C。将共享内存段附加到其地址空间。d。将 sequence_size 的值设置为命令行上的参数。e. fork 子进程并调用 wait() 系统调用以等待子进程完成。F。在共享内存段中输出斐波那契数列的值。G。分离并删除共享内存段。
共享内存段将附加到子地址空间以及父地址空间。子进程然后将斐波那契数列写入
共享内存段。父进程和子进程必须同步,以便父进程在子进程完成生成序列之前不会输出斐波那契数列。注意:在控制台上显示足够的消息让用户知道何时执行了某个操作,例如创建和终止子进程等。”
专家头脑请帮助。