⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 locks.h

📁 this gcc-g++-3.3.1.tar.gz is a source file of gcc, you can learn more about gcc through this codes f
💻 H
字号:
// locks.h - Thread synchronization primitives. SuperH implementation./* Copyright (C) 2002  Free Software Foundation   This file is part of libgcj.This software is copyrighted work licensed under the terms of theLibgcj License.  Please consult the file "LIBGCJ_LICENSE" fordetails.  */#ifndef __SYSDEP_LOCKS_H__#define __SYSDEP_LOCKS_H__typedef size_t obj_addr_t;	/* Integer type big enough for object	*/				/* address.				*/static unsigned char __cas_lock = 0;inline static void__cas_start_atomic (void){  unsigned int val;  do    __asm__ __volatile__ ("tas.b @%1; movt %0"			  : "=r" (val)			  : "r" (&__cas_lock)			  : "memory");  while (val == 0);}inline static void__cas_end_atomic (void){  __asm__ __volatile__ (" " : : : "memory");  __cas_lock = 0;}inline static boolcompare_and_swap (volatile obj_addr_t *addr, obj_addr_t old,		  obj_addr_t new_val){  bool ret;  __cas_start_atomic ();  if (*addr != old)    ret = false;  else    {      *addr = new_val;      ret = true;    }  __cas_end_atomic ();  return ret;}inline static voidrelease_set (volatile obj_addr_t *addr, obj_addr_t new_val){  __asm__ __volatile__ (" " : : : "memory");  *(addr) = new_val;}inline static boolcompare_and_swap_release (volatile obj_addr_t *addr, obj_addr_t old,			  obj_addr_t new_val){  return compare_and_swap (addr, old, new_val);}#endif /* ! __SYSDEP_LOCKS_H__ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -