You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2021/04/08 19:24:07 UTC

svn commit: r1888531 - /subversion/trunk/subversion/libsvn_subr/task.c

Author: danielsh
Date: Thu Apr  8 19:24:07 2021
New Revision: 1888531

URL: http://svn.apache.org/viewvc?rev=1888531&view=rev
Log:
* subversion/libsvn_subr/task.c: Add form feed section breaks.

Modified:
    subversion/trunk/subversion/libsvn_subr/task.c

Modified: subversion/trunk/subversion/libsvn_subr/task.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_subr/task.c?rev=1888531&r1=1888530&r2=1888531&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_subr/task.c (original)
+++ subversion/trunk/subversion/libsvn_subr/task.c Thu Apr  8 19:24:07 2021
@@ -359,6 +359,7 @@ apr_pool_t *svn_task__create_process_poo
   return svn_pool_create(parent->root->process_pool);
 }
 
+
 /* Removing tasks from the tree */
 
 /* Remove TASK from the parent tree.
@@ -401,6 +402,7 @@ static void free_sub_tasks(svn_task__t *
     task->parent->first_sub = task->next;
 }
 
+
 /* Picking the next task to process */
 
 /* Utility function that follows the chain of siblings and returns the first
@@ -459,6 +461,7 @@ static void unready_task(svn_task__t *ta
     }
 }
 
+
 /* Task processing and outputting results */
 
 /* The forground output_processed() function will now consider TASK's
@@ -617,6 +620,7 @@ static svn_error_t *output_processed(
   return SVN_NO_ERROR;
 }
 
+
 /* Execution models */
 
 /* Run the (root) TASK to completion, including dynamically added sub-tasks.
@@ -673,6 +677,7 @@ static svn_error_t *execute_serially(
   return svn_error_trace(task_err);
 }
 
+
 /* Root data structure */
 
 svn_error_t *svn_task__run(