当前位置: 首页>>代码示例>>C++>>正文


C++ debug_object_init_on_stack函数代码示例

本文整理汇总了C++中debug_object_init_on_stack函数的典型用法代码示例。如果您正苦于以下问题:C++ debug_object_init_on_stack函数的具体用法?C++ debug_object_init_on_stack怎么用?C++ debug_object_init_on_stack使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了debug_object_init_on_stack函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: init_rcu_head_on_stack

/**
 * init_rcu_head_on_stack() - initialize on-stack rcu_head for debugobjects
 * @head: pointer to rcu_head structure to be initialized
 *
 * This function informs debugobjects of a new rcu_head structure that
 * has been allocated as an auto variable on the stack.  This function
 * is not required for rcu_head structures that are statically defined or
 * that are dynamically allocated on the heap.  This function has no
 * effect for !CONFIG_DEBUG_OBJECTS_RCU_HEAD kernel builds.
 */
void init_rcu_head_on_stack(struct rcu_head *head)
{
	debug_object_init_on_stack(head, &rcuhead_debug_descr);
}
开发者ID:Lyude,项目名称:linux,代码行数:14,代码来源:update.c

示例2: hrtimer_init_on_stack

void hrtimer_init_on_stack(struct hrtimer *timer, clockid_t clock_id,
			   enum hrtimer_mode mode)
{
	debug_object_init_on_stack(timer, &hrtimer_debug_descr);
	__hrtimer_init(timer, clock_id, mode);
}
开发者ID:RolanDroid,项目名称:lge_MonsterKernel-lproj,代码行数:6,代码来源:hrtimer.c

示例3: debug_fence_init_onstack

static inline void debug_fence_init_onstack(struct i915_sw_fence *fence)
{
	debug_object_init_on_stack(fence, &i915_sw_fence_debug_descr);
}
开发者ID:SantoshShilimkar,项目名称:linux,代码行数:4,代码来源:i915_sw_fence.c


注:本文中的debug_object_init_on_stack函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。