4番目の引数をpthread_create()に渡す方法に関して奇妙な問題に遭遇しました。
もともと、私は次のようにコードを書きました:
auditLogEntry *newEntry = NULL;
// malloc and init the memory for newEntry
rc = audit_init_log_entry(&newEntry);
// wrapper of 'goto cleanup'
ERR_IF( rc != 0 );
...
rc2 = pthread_attr_init(&attr);
ERR_IF( rc2 != 0 );
rc2 = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
ERR_IF( rc2 != 0 );
rc2 = pthread_create(&syslog_thread, &attr, syslog_thread_handler, (void *)newEntry);
ERR_IF( rc2 != 0 );
newEntry = NULL;
...
cleanup:
pthread_attr_destroy(&attr);
if (newEntry != NULL)
{
audit_free_log_entry(newEntry);
newEntry = NULL;
}
static void *syslog_thread_handler(void *t)
{
auditLogEntry *entry = (auditLogEntry *)t;
... // code using entry
cleanup:
audit_free_log_entry(entry);
pthread_exit(0);
}
すべてが正常に動作します。
次に、次のように変更しました。
rc2 = pthread_create(&syslog_thread, &attr, syslog_thread_handler, (void *)&newEntry);
ERR_IF( rc2 != 0 );
...
cleanup:
pthread_attr_destroy(&attr);
if (rc != 0 && newEntry != NULL)
{
audit_free_log_entry(newEntry);
newEntry = NULL;
}
static void *syslog_thread_handler(void *t)
{
auditLogEntry **entry = (auditLogEntry **)t;
... // code using *entry
cleanup:
audit_free_log_entry(*entry);
*entry = NULL;
pthread_exit(0);
}
上記の変更後、スレッドハンドラーは*entryを使用してログエントリデータにアクセスします。しかし、それはうまくいきませんでした。さらに悪いことに、プロセスコアがダンプされました。
'man pthread_create'を試しましたが、最後の引数をどのように渡すかについての特別な言及は見つかりませんでした。
ここで私の不正行為はありますか?