📄 sccomp.hxx
字号:
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft shared
// source or premium shared source license agreement under which you licensed
// this source code. If you did not accept the terms of the license agreement,
// you are not authorized to use this source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the SOURCE.RTF on your install media or the root of your tools installation.
// THE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
/*++
Module Name:
sccomp.hxx
Abstract:
Misc unsigned comparison funcs
Important note about lock hierarchy:
QueueManager -> SessionManager -> Session -> Main Queue(s) -> Dead letter/journal(s) -> ACK/NACK queue
--*/
#if ! defined (__sccomp_HXX__)
#define __sccomp_HXX__ 1
static inline int did_not_expire (unsigned int uiTime, unsigned int uiNow) {
return (uiTime == INFINITE) || (((int)uiTime - (int)uiNow) >= 0);
}
static inline int did_expire (unsigned int uiTime, unsigned int uiNow) {
return (uiTime != INFINITE) && (((int)uiTime - (int)uiNow) < 0);
}
static inline int time_less_equal (unsigned int t1, unsigned int t2) {
return (int)t1 - (int)t2 <= 0;
}
static inline int time_greater_equal (unsigned int t1, unsigned int t2) {
return (int)t1 - (int)t2 >= 0;
}
static inline int time_less (unsigned int t1, unsigned int t2) {
return (int)t1 - (int)t2 < 0;
}
static inline int time_greater (unsigned int t1, unsigned int t2) {
return (int)t1 - (int)t2 > 0;
}
static inline int sessnum_greater (unsigned short a, unsigned short b) {
return (signed short)((signed short)a - (signed short)b) > 0;
}
static inline int sessnum_greater_equal (unsigned short a, unsigned short b) {
return (signed short)((signed short)a - (signed short)b) >= 0;
}
static inline int sessnum_less (unsigned short a, unsigned short b) {
return (signed short)((signed short)a - (signed short)b) < 0;
}
static inline int sessnum_less_equal (unsigned short a, unsigned short b) {
return (signed short)((signed short)a - (signed short)b) <= 0;
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -