[Lldb-commits] [lldb] SBDebugger: define callback_token_t for win32 (PR #92870)

antoine moynault via lldb-commits lldb-commits at lists.llvm.org
Tue May 21 00:24:33 PDT 2024


https://github.com/antmox created https://github.com/llvm/llvm-project/pull/92870

fix lldb-aarch64-windows bot failure introduced by #89868 https://lab.llvm.org/buildbot/#/builders/219/builds/11583

>From 83ac7ff11a694795dccf3fa09c82ddab5d0096f3 Mon Sep 17 00:00:00 2001
From: Antoine Moynault <antoine.moynault at linaro.org>
Date: Tue, 21 May 2024 07:21:10 +0000
Subject: [PATCH] SBDebugger: define callback_token_t for win32

fix lldb-aarch64-windows bot failure introduced by #89868
https://lab.llvm.org/buildbot/#/builders/219/builds/11583
---
 lldb/include/lldb/lldb-types.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lldb/include/lldb/lldb-types.h b/lldb/include/lldb/lldb-types.h
index 8e717c62d3259..6b9289f0a0743 100644
--- a/lldb/include/lldb/lldb-types.h
+++ b/lldb/include/lldb/lldb-types.h
@@ -47,6 +47,7 @@ typedef void *thread_arg_t;                       // Host thread argument type
 typedef unsigned thread_result_t;                 // Host thread result type
 typedef thread_result_t (*thread_func_t)(void *); // Host thread function type
 typedef void *pipe_t;                             // Host pipe type is HANDLE
+typedef int callback_token_t;
 
 #else
 



More information about the lldb-commits mailing list