[Lldb-commits] [lldb] r121045 - /lldb/trunk/test/load_unload/main.c

Johnny Chen johnny.chen at apple.com
Mon Dec 6 14:07:36 PST 2010


Author: johnny
Date: Mon Dec  6 16:07:36 2010
New Revision: 121045

URL: http://llvm.org/viewvc/llvm-project?rev=121045&view=rev
Log:
Forgot to also check in this file with the previous r121036 change:

    /lldb/trunk/test/load_unload/TestLoadUnload.py

Modified:
    lldb/trunk/test/load_unload/main.c

Modified: lldb/trunk/test/load_unload/main.c
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/load_unload/main.c?rev=121045&r1=121044&r2=121045&view=diff
==============================================================================
--- lldb/trunk/test/load_unload/main.c (original)
+++ lldb/trunk/test/load_unload/main.c Mon Dec  6 16:07:36 2010
@@ -23,7 +23,7 @@
     void *c_dylib_handle = NULL;
     int (*a_function) (void);
 
-    a_dylib_handle = dlopen (a_name, RTLD_NOW);
+    a_dylib_handle = dlopen (a_name, RTLD_NOW); // Set break point at this line for test_lldb_process_load_and_unload_commands().
     if (a_dylib_handle == NULL)
     {
         fprintf (stderr, "%s\n", dlerror());





More information about the lldb-commits mailing list