mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
Delete unused 'time' fields from struct bio_job (#9622)
looks like this field was never actually used and the call to time() is excessive.
This commit is contained in:
parent
b874c6f1fc
commit
7ff7536e2c
@ -77,7 +77,6 @@ static unsigned long long bio_pending[BIO_NUM_OPS];
|
||||
/* This structure represents a background Job. It is only used locally to this
|
||||
* file as the API does not expose the internals at all. */
|
||||
struct bio_job {
|
||||
time_t time; /* Time at which the job was created. */
|
||||
/* Job specific arguments.*/
|
||||
int fd; /* Fd for file based background jobs */
|
||||
lazy_free_fn *free_fn; /* Function that will free the provided arguments */
|
||||
@ -127,7 +126,6 @@ void bioInit(void) {
|
||||
}
|
||||
|
||||
void bioSubmitJob(int type, struct bio_job *job) {
|
||||
job->time = time(NULL);
|
||||
pthread_mutex_lock(&bio_mutex[type]);
|
||||
listAddNodeTail(bio_jobs[type],job);
|
||||
bio_pending[type]++;
|
||||
|
Loading…
Reference in New Issue
Block a user