Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-dev: Re: [Wireshark-dev] Feature: option to open windows as tabs

From: Guy Harris <guy@xxxxxxxxxxxx>
Date: Sat, 5 May 2018 11:25:16 -0700
On May 5, 2018, at 10:04 AM, Peter Wu <peter@xxxxxxxxxxxxx> wrote:

> Memory usage will probably suck due to exact copies of the process,

On most if not all UN*Xes, the executable image's code and read-only data, and libwireshark's/libwiretap's/libwsutil's code and read-only data, should be shared between all of the processes.

You won't, however, share the results of reading in configuration files, e.g. the new fields added by reading in the RADIUS and DIAMETER dictionaries...

...unless they're read in by the UI process, and handed to the dissector processes as (read-only) shared memory.

I *think* Windows DLLs may also function as shared libraries.