diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-01-24 11:56:20 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2020-01-24 16:15:47 +0100 |
commit | f7c29ffee7fdd61470fd879cfae470534423c0c7 (patch) | |
tree | 81688531a5ec3729e3957c50d666e2d3cb264a77 /lib/sqfs/data_writer/internal.h | |
parent | a9763a118ddceaffb99eb7d89b6a2d1f56b1e9df (diff) |
Cleanup: remove single use helper functions from data writer
This commit moves the single use helper functions that are called from
worker thread context into the worker thread function.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/sqfs/data_writer/internal.h')
-rw-r--r-- | lib/sqfs/data_writer/internal.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/sqfs/data_writer/internal.h b/lib/sqfs/data_writer/internal.h index 1a85644..8a3f4d7 100644 --- a/lib/sqfs/data_writer/internal.h +++ b/lib/sqfs/data_writer/internal.h @@ -134,13 +134,6 @@ int data_writer_init(sqfs_data_writer_t *proc, size_t max_block_size, SQFS_INTERNAL void data_writer_cleanup(sqfs_data_writer_t *proc); SQFS_INTERNAL -void data_writer_store_done(sqfs_data_writer_t *proc, sqfs_block_t *blk, - int status); - -SQFS_INTERNAL -sqfs_block_t *data_writer_next_work_item(sqfs_data_writer_t *proc); - -SQFS_INTERNAL int data_writer_do_block(sqfs_block_t *block, sqfs_compressor_t *cmp, sqfs_u8 *scratch, size_t scratch_size); |