Cygwin: Pass file paths instead of file descriptors over UNIX sockets
[lttng-tools.git] / src / bin / lttng-sessiond / lttng-ust-abi.h
index f726c8b576e707a69a0cd3508f77c184d21706c4..c54ef2fbf7040f4663caedc9870ea116c541a894 100644 (file)
  * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
  * OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.
  *
- * Permission is hereby granted to use or copy this program
- * for any purpose,  provided the above notices are retained on all copies.
- * Permission to modify the code and to distribute modified code is granted,
- * provided the above notices are retained, and a notice that the code was
- * modified is included with the above copyright notice.
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
  */
 
 #include <stdint.h>
@@ -127,7 +131,9 @@ struct lttng_ust_tracepoint_iter {
 struct lttng_ust_object_data {
        int handle;
        int shm_fd;
+       char *shm_path;
        int wait_fd;
+       char *wait_pipe_path;
        uint64_t memory_map_size;
        char padding[LTTNG_UST_OBJECT_DATA_PADDING];
 };
@@ -197,12 +203,16 @@ struct lttng_ust_obj;
 union ust_args {
        struct {
                int *shm_fd;
+               char *shm_path;
                int *wait_fd;
+               char *wait_pipe_path;
                uint64_t *memory_map_size;
        } channel;
        struct {
                int *shm_fd;
+               char *shm_path;
                int *wait_fd;
+               char *wait_pipe_path;
                uint64_t *memory_map_size;
        } stream;
 };
This page took 0.023466 seconds and 4 git commands to generate.