Skip to content

Commit

Permalink
run_processes_parallel: rename parameters for the callbacks
Browse files Browse the repository at this point in the history
The refs code has a similar pattern of passing around 'struct strbuf *err',
which is strictly used for error reporting. This is not the case here,
as the strbuf is used to accumulate all the output (whether it is error
or not) for the user. Rename it to 'out'.

Suggested-by: Jonathan Nieder <jrnieder@gmail.com>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Stefan Beller authored and Junio C Hamano committed Mar 1, 2016
1 parent 2dac9b5 commit aa71049
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions run-command.c
Original file line number Diff line number Diff line change
Expand Up @@ -902,15 +902,15 @@ struct parallel_processes {
struct strbuf buffered_output; /* of finished children */
};

static int default_start_failure(struct strbuf *err,
static int default_start_failure(struct strbuf *out,
void *pp_cb,
void *pp_task_cb)
{
return 0;
}

static int default_task_finished(int result,
struct strbuf *err,
struct strbuf *out,
void *pp_cb,
void *pp_task_cb)
{
Expand Down
10 changes: 5 additions & 5 deletions run-command.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ int in_async(void);
* return the negative signal number.
*/
typedef int (*get_next_task_fn)(struct child_process *cp,
struct strbuf *err,
struct strbuf *out,
void *pp_cb,
void **pp_task_cb);

Expand All @@ -148,7 +148,7 @@ typedef int (*get_next_task_fn)(struct child_process *cp,
* a new process.
*
* You must not write to stdout or stderr in this function. Add your
* message to the strbuf err instead, which will be printed without
* message to the strbuf out instead, which will be printed without
* messing up the output of the other parallel processes.
*
* pp_cb is the callback cookie as passed into run_processes_parallel,
Expand All @@ -158,15 +158,15 @@ typedef int (*get_next_task_fn)(struct child_process *cp,
* To send a signal to other child processes for abortion, return
* the negative signal number.
*/
typedef int (*start_failure_fn)(struct strbuf *err,
typedef int (*start_failure_fn)(struct strbuf *out,
void *pp_cb,
void *pp_task_cb);

/**
* This callback is called on every child process that finished processing.
*
* You must not write to stdout or stderr in this function. Add your
* message to the strbuf err instead, which will be printed without
* message to the strbuf out instead, which will be printed without
* messing up the output of the other parallel processes.
*
* pp_cb is the callback cookie as passed into run_processes_parallel,
Expand All @@ -177,7 +177,7 @@ typedef int (*start_failure_fn)(struct strbuf *err,
* the negative signal number.
*/
typedef int (*task_finished_fn)(int result,
struct strbuf *err,
struct strbuf *out,
void *pp_cb,
void *pp_task_cb);

Expand Down

0 comments on commit aa71049

Please sign in to comment.