mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 15:30:14 +00:00
backup: pass in valid dummy pid for LWP
LWP_CreateProcess needs memory passed in; instead of a null pointer, pass in a pointer to a PROCESS. Change-Id: I451d803461252e3afb5d89b840a1ee047228d204 Reviewed-on: http://gerrit.openafs.org/3555 Reviewed-by: Andrew Deason <adeason@sinenomine.net> Reviewed-by: Derrick Brashear <shadow@dementia.org> Tested-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
parent
37c20528df
commit
4f89d4ad34
@ -250,7 +250,7 @@ bc_StartDmpRst(struct bc_config *aconfig, char *adname, char *avname,
|
||||
{
|
||||
int i;
|
||||
afs_int32 code;
|
||||
void *junk = NULL;
|
||||
PROCESS junk;
|
||||
|
||||
for (i = 0; i < BC_MAXSIMDUMPS; i++)
|
||||
if (!(bc_dumpTasks[i].flags & BC_DI_INUSE))
|
||||
@ -293,7 +293,7 @@ bc_StartDmpRst(struct bc_config *aconfig, char *adname, char *avname,
|
||||
|
||||
code =
|
||||
LWP_CreateProcess(bc_DmpRstStart, 20480, LWP_NORMAL_PRIORITY,
|
||||
(void *)(intptr_t)i, "helper", junk);
|
||||
(void *)(intptr_t)i, "helper", &junk);
|
||||
if (code) {
|
||||
bc_HandleMisc(code);
|
||||
afs_com_err(whoami, code, "; Can't start thread");
|
||||
|
Loading…
Reference in New Issue
Block a user