[BACK]Return to kern_lock.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / kern

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/kern/kern_lock.c between version 1.161 and 1.162

version 1.161, 2017/12/25 09:13:40 version 1.162, 2019/05/09 04:53:52
Line 117  do {         \
Line 117  do {         \
 #define _KERNEL_LOCK_ASSERT(cond)       /* nothing */  #define _KERNEL_LOCK_ASSERT(cond)       /* nothing */
 #endif  #endif
   
 void    _kernel_lock_dump(const volatile void *);  static void     _kernel_lock_dump(const volatile void *);
   
 lockops_t _kernel_lock_ops = {  lockops_t _kernel_lock_ops = {
         .lo_name = "Kernel lock",          .lo_name = "Kernel lock",
Line 141  CTASSERT(CACHE_LINE_SIZE >= sizeof(__cpu
Line 141  CTASSERT(CACHE_LINE_SIZE >= sizeof(__cpu
 /*  /*
  * Print debugging information about the kernel lock.   * Print debugging information about the kernel lock.
  */   */
 void  static void
 _kernel_lock_dump(const volatile void *junk)  _kernel_lock_dump(const volatile void *junk)
 {  {
         struct cpu_info *ci = curcpu();          struct cpu_info *ci = curcpu();

Legend:
Removed from v.1.161  
changed lines
  Added in v.1.162

CVSweb <webmaster@jp.NetBSD.org>