Skip to content

Commit

Permalink
Merge pull request #352 from tier4/fix_ld_preload
Browse files Browse the repository at this point in the history
fix: LD_PRELOAD
  • Loading branch information
atsushi421 authored Dec 3, 2024
2 parents 6012c97 + 904b711 commit f3ff443
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common_sensor_launch/launch/nebula_node_container.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,8 @@ def create_parameter_dict(*args):
composable_node_descriptions=nodes,
output="both",
additional_env={
'LD_PRELOAD': 'libagnocast_heaphook.so',
'MEMPOOL_SIZE': '1073741824', # 1GB
"LD_PRELOAD": f"libagnocast_heaphook.so:{os.getenv('LD_PRELOAD', '')}",
"MEMPOOL_SIZE": "1073741824", # 1GB
},
)

Expand Down

0 comments on commit f3ff443

Please sign in to comment.