Ignore:
Timestamp:
2018-09-13T12:05:53Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cc74cb5
Parents:
b2aaaa0
git-author:
Jiri Svoboda <jiri@…> (2018-09-13 07:09:46)
git-committer:
Jiri Svoboda <jiri@…> (2018-09-13 12:05:53)
Message:

Fix vertical spacing with new Ccheck revision.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/synch/workqueue.c

    rb2aaaa0 r09ab0a9a  
    5252#define WORK_ITEM_MAGIC  0xfeec1777U
    5353
    54 
    5554struct work_queue {
    5655        /*
     
    9695};
    9796
    98 
    9997/** Min number of idle workers to keep. */
    10098static size_t min_worker_cnt;
     
    111109static int booting = true;
    112110
    113 
    114111typedef struct {
    115112        IRQ_SPINLOCK_DECLARE(lock);
     
    121118static nonblock_adder_t nonblock_adder;
    122119
    123 
    124 
    125120/** Typedef a worker thread signaling operation prototype. */
    126121typedef void (*signal_op_t)(struct work_queue *workq);
    127 
    128122
    129123/* Fwd decl. */
     
    790784        --workq->idle_worker_cnt;
    791785}
    792 
    793786
    794787/** Invoked from thread_ready() right before the thread is woken up. */
     
    888881}
    889882
    890 
    891883static bool dequeue_add_req(nonblock_adder_t *info, struct work_queue **pworkq)
    892884{
     
    925917        }
    926918}
    927 
    928919
    929920static void nonblock_init(void)
Note: See TracChangeset for help on using the changeset viewer.