Added the ability to disable ASLR (Address Space Layout Randomization). ASLR
is disabled by default, and can be enabled using:

(lldb) set disable-aslr 0



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@112616 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
index 88c495a..62473f9 100644
--- a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
+++ b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
@@ -81,6 +81,7 @@
     DoLaunch (lldb_private::Module* module,
               char const *argv[],           // Can be NULL
               char const *envp[],           // Can be NULL
+              uint32_t flags,
               const char *stdin_path,       // Can be NULL
               const char *stdout_path,  // Can be NULL
               const char *stderr_path); // Can be NULL
@@ -292,6 +293,7 @@
                              lldb::pid_t attach_pid,         // If inferior inferior_argv == NULL, then attach to this pid
                              const char *attach_pid_name,    // Wait for the next process to launch whose basename matches "attach_wait_name"
                              bool wait_for_launch,           // Wait for the process named "attach_wait_name" to launch
+                             bool disable_aslr,               // Disable ASLR
                              lldb_private::ArchSpec& arch_spec);
 
     void