UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
TVOSCommon.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5//------------------------------------------------------------------
6// Debug break
7
8#if defined(ULANG_PLATFORM_IOS_WITH_SIMULATOR) && ULANG_PLATFORM_IOS_WITH_SIMULATOR
9 #define ULANG_BREAK() __asm__("int $3")
10#elif defined(__LP64__)
11 #define ULANG_BREAK() __asm__("svc 0")
12#else
13 #define ULANG_BREAK() __asm__("trap")
14#endif