aboutsummaryrefslogtreecommitdiff
path: root/lib/sqfs/blk_proc/pthread.c
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-09-25 06:50:03 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-09-25 06:50:03 +0200
commit9434bdfaedb733e1441d87fedde8056efeda7145 (patch)
tree48b2d8c9e113170f9b64337507acd5d0981e9c87 /lib/sqfs/blk_proc/pthread.c
parent8f0f1f4c8047a97012c55dc057780ff76667aacc (diff)
More refactoring of the block processor
Basically just moving functions around and renaming things. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/sqfs/blk_proc/pthread.c')
-rw-r--r--lib/sqfs/blk_proc/pthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqfs/blk_proc/pthread.c b/lib/sqfs/blk_proc/pthread.c
index 57b61c1..7b95c7c 100644
--- a/lib/sqfs/blk_proc/pthread.c
+++ b/lib/sqfs/blk_proc/pthread.c
@@ -226,7 +226,7 @@ static int process_done_queue(sqfs_block_processor_t *proc,
if (it->flags & SQFS_BLK_IS_FRAGMENT) {
block = NULL;
- status = handle_fragment(proc, it, &block);
+ status = process_completed_fragment(proc, it, &block);
if (block != NULL && status == 0) {
pthread_mutex_lock(&proc->mtx);