Set SHM config for multiple producers.

The name of the producer is passed through the Connect methods.
This name is matched to the name in the trace config so that producer specific configs can be set.

Bug:74098471
Change-Id: I2aa9a910191d395259178eff62a5c750b3ed81d7
diff --git a/src/traced/probes/probes_producer.cc b/src/traced/probes/probes_producer.cc
index 14d919d..5d29fd9 100644
--- a/src/traced/probes/probes_producer.cc
+++ b/src/traced/probes/probes_producer.cc
@@ -240,7 +240,8 @@
 void ProbesProducer::Connect() {
   PERFETTO_DCHECK(state_ == kNotConnected);
   state_ = kConnecting;
-  endpoint_ = ProducerIPCClient::Connect(socket_name_, this, task_runner_);
+  endpoint_ = ProducerIPCClient::Connect(
+      socket_name_, this, "com.google.perfetto.traced_probes", task_runner_);
 }
 
 void ProbesProducer::IncreaseConnectionBackoff() {