cregit-Linux how code gets into the kernel

Release 4.17 tools/include/linux/spinlock.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __LINUX_SPINLOCK_H_

#define __LINUX_SPINLOCK_H_

#include <pthread.h>
#include <stdbool.h>


#define spinlock_t		pthread_mutex_t

#define DEFINE_SPINLOCK(x)	pthread_mutex_t x = PTHREAD_MUTEX_INITIALIZER

#define __SPIN_LOCK_UNLOCKED(x)	(pthread_mutex_t)PTHREAD_MUTEX_INITIALIZER

#define spin_lock_init(x)      pthread_mutex_init(x, NULL)


#define spin_lock_irqsave(x, f)		(void)f, pthread_mutex_lock(x)

#define spin_unlock_irqrestore(x, f)	(void)f, pthread_mutex_unlock(x)


#define arch_spinlock_t pthread_mutex_t

#define __ARCH_SPIN_LOCK_UNLOCKED PTHREAD_MUTEX_INITIALIZER


static inline void arch_spin_lock(arch_spinlock_t *mutex) { pthread_mutex_lock(mutex); }

Contributors

PersonTokensPropCommitsCommitProp
Alexander (Sasha) Levin16100.00%1100.00%
Total16100.00%1100.00%


static inline void arch_spin_unlock(arch_spinlock_t *mutex) { pthread_mutex_unlock(mutex); }

Contributors

PersonTokensPropCommitsCommitProp
Alexander (Sasha) Levin16100.00%1100.00%
Total16100.00%1100.00%


static inline bool arch_spin_is_locked(arch_spinlock_t *mutex) { return true; }

Contributors

PersonTokensPropCommitsCommitProp
Alexander (Sasha) Levin14100.00%1100.00%
Total14100.00%1100.00%

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Alexander (Sasha) Levin6860.71%120.00%
Matthew Wilcox3531.25%240.00%
Ross Zwisler87.14%120.00%
Greg Kroah-Hartman10.89%120.00%
Total112100.00%5100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.