@@ -166,11 +166,19 @@ static void print_port(snd_seq_t *seq, snd_seq_client_info_t *cinfo,
snd_seq_port_info_t *pinfo, int count)
{
if (! count) {
- printf(_("client %d: '%s' [type=%s]\n"),
+ printf(_("client %d: '%s' [type=%s"),
snd_seq_client_info_get_client(cinfo),
snd_seq_client_info_get_name(cinfo),
(snd_seq_client_info_get_type(cinfo) == SND_SEQ_USER_CLIENT ?
_("user") : _("kernel")));
+ int owner = snd_seq_client_info_get_owner(cinfo);
+ if (owner != -1) {
+ if (snd_seq_client_info_get_type(cinfo) == SND_SEQ_USER_CLIENT)
+ printf(",pid=%d", owner);
+ else
+ printf(",card=%d", owner);
+ }
+ printf("]\n");
}
printf(" %3d '%-16s'\n",
snd_seq_port_info_get_port(pinfo),