ams: support building unit test programs on windows/linux/macos

This commit is contained in:
Michael Scire 2022-03-06 12:08:20 -08:00 committed by SciresM
parent 9a38be201a
commit 64a97576d0
756 changed files with 33359 additions and 9372 deletions

View file

@ -34,28 +34,28 @@ namespace ams::tipc {
template<>
class Out<CopyHandle> {
private:
os::NativeHandle * const m_ptr;
tipc::NativeHandle * const m_ptr;
public:
ALWAYS_INLINE Out(os::NativeHandle *p) : m_ptr(p) { /* ... */ }
ALWAYS_INLINE Out(tipc::NativeHandle *p) : m_ptr(p) { /* ... */ }
ALWAYS_INLINE void SetValue(os::NativeHandle v) const {
ALWAYS_INLINE void SetValue(tipc::NativeHandle v) const {
*m_ptr = v;
}
ALWAYS_INLINE const os::NativeHandle &GetValue() const {
ALWAYS_INLINE const tipc::NativeHandle &GetValue() const {
return *m_ptr;
}
ALWAYS_INLINE os::NativeHandle *GetPointer() const {
ALWAYS_INLINE tipc::NativeHandle *GetPointer() const {
return m_ptr;
}
/* Convenience operators. */
ALWAYS_INLINE os::NativeHandle &operator*() const {
ALWAYS_INLINE tipc::NativeHandle &operator*() const {
return *m_ptr;
}
ALWAYS_INLINE os::NativeHandle *operator->() const {
ALWAYS_INLINE tipc::NativeHandle *operator->() const {
return m_ptr;
}
};
@ -63,28 +63,28 @@ namespace ams::tipc {
template<>
class Out<MoveHandle> {
private:
os::NativeHandle * const m_ptr;
tipc::NativeHandle * const m_ptr;
public:
ALWAYS_INLINE Out(os::NativeHandle *p) : m_ptr(p) { /* ... */ }
ALWAYS_INLINE Out(tipc::NativeHandle *p) : m_ptr(p) { /* ... */ }
ALWAYS_INLINE void SetValue(os::NativeHandle v) const {
ALWAYS_INLINE void SetValue(tipc::NativeHandle v) const {
*m_ptr = v;
}
ALWAYS_INLINE const os::NativeHandle &GetValue() const {
ALWAYS_INLINE const tipc::NativeHandle &GetValue() const {
return *m_ptr;
}
ALWAYS_INLINE os::NativeHandle *GetPointer() const {
ALWAYS_INLINE tipc::NativeHandle *GetPointer() const {
return m_ptr;
}
/* Convenience operators. */
ALWAYS_INLINE os::NativeHandle &operator*() const {
ALWAYS_INLINE tipc::NativeHandle &operator*() const {
return *m_ptr;
}
ALWAYS_INLINE os::NativeHandle *operator->() const {
ALWAYS_INLINE tipc::NativeHandle *operator->() const {
return m_ptr;
}
};