Give the clang functions names.  This is only for logging.

llvm-svn: 206836
diff --git a/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp b/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp
index b58ef0c..47c883e 100644
--- a/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp
+++ b/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp
@@ -218,9 +218,10 @@
             ClangASTContext *clang_ast_context = thread.GetProcess()->GetTarget().GetScratchClangASTContext();
             ClangASTType get_thread_item_info_return_type = clang_ast_context->GetBasicType(eBasicTypeVoid).GetPointerType();
             m_get_thread_item_info_function.reset(new ClangFunction (thread,
-                                                     get_thread_item_info_return_type,
-                                                     impl_code_address,
-                                                     get_thread_item_info_arglist));
+                                                                     get_thread_item_info_return_type,
+                                                                     impl_code_address,
+                                                                     get_thread_item_info_arglist,
+                                                                     "queue-thread-item-info"));
             
             errors.Clear();        
             unsigned num_errors = m_get_thread_item_info_function->CompileFunction(errors);