構造体の配列へのポインタを渡そうとしています。このコードは、構造体の配列を作成し、構造体の変数に書き込み、それらを出力する必要があります(これは機能します)。次に、その構造体の配列のポインターを別の関数に渡し、支柱の配列を出力します。
#define PORT_NUMBER 5100
#define MAX_CLIENTS 5
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <pthread.h>
typedef struct thread_args
{
int client_number;
int connected;
char client_name[1024];
} client;
void pass_func(client* clients[])
int main()
{
struct thread_args clients[MAX_CLIENTS];
int i;
for(i =0; i < MAX_CLIENTS; i++)
{
clients[i].client_number=i;
strcpy(clients[i].client_name, "BOBBY");
}
for(i =0; i < MAX_CLIENTS; i++)
{
printf("%d | %s\n", clients[i].client_number=i, clients[i].client_name);
}
printf("\n\n");
pass_func(&clients);
}
void pass_func(client* clients[])
{
int i;
for(i =0; i < MAX_CLIENTS; i++)
{
printf("%d | %s\n", clients[i]->client_number=i, clients[i]->client_name);
}
}
そしてこれは出力です:
$ gcc TEST.c -lpthread -o TEST.out
TEST.c: In function ‘main’:
TEST.c:41:3: warning: passing argument 1 of ‘pass_func’ from incompatible pointer type [enabled by default]
TEST.c:22:6: note: expected ‘struct thread_args **’ but argument is of type ‘struct thread_args (*)[5]’
$ ./TEST.out
0 | BOBBY
1 | BOBBY
2 | BOBBY
3 | BOBBY
4 | BOBBY
Segmentation fault
私は約1時間の調査を行いましたが、なぜこれが機能しないのか理解できません。私が見つけた例のほとんどはC++用ですが、C用ではありません(もちろん、インクルードしたヘッダーファイルの多くはこのコードには必要ありません。これは元のコードの一部にすぎません)。