summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2012-09-28 21:48:28 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2012-09-28 21:48:28 +0000
commitd45d88d161da6484921f22b52b3d77b3f08b1caa (patch)
treefcbed3460c0685fc99c7372632c179bf5c9dec47 /ui
parent49ce5e127b1d05937a1bf9c153ab56a1303980f8 (diff)
downloadwireshark-d45d88d161da6484921f22b52b3d77b3f08b1caa.tar.gz
remove some very old comments about multithreaded tap implementation...
svn path=/trunk/; revision=45202
Diffstat (limited to 'ui')
-rw-r--r--ui/gtk/bootp_stat.c7
-rw-r--r--ui/gtk/compare_stat.c6
-rw-r--r--ui/gtk/dcerpc_stat.c9
-rw-r--r--ui/gtk/rpc_progs.c6
-rw-r--r--ui/gtk/rpc_stat.c6
-rw-r--r--ui/gtk/scsi_stat.c8
-rw-r--r--ui/gtk/sip_stat.c7
-rw-r--r--ui/gtk/wsp_stat.c8
8 files changed, 0 insertions, 57 deletions
diff --git a/ui/gtk/bootp_stat.c b/ui/gtk/bootp_stat.c
index 23c454a9ca..0cabf6e724 100644
--- a/ui/gtk/bootp_stat.c
+++ b/ui/gtk/bootp_stat.c
@@ -150,13 +150,6 @@ dhcpstat_draw(void *psp)
g_hash_table_foreach(sp->hash, (GHFunc)dhcp_draw_message_type, NULL);
}
-
-/* Since the gtk2 implementation of tap is multithreaded we must protect
- * remove_tap_listener() from modifying the list while draw_tap_listener()
- * is running. The other protected block is in main.c
- *
- * There should not be any other critical regions in gtk2.
- */
static void
win_destroy_cb(GtkWindow *win _U_, gpointer data)
{
diff --git a/ui/gtk/compare_stat.c b/ui/gtk/compare_stat.c
index 57dba5ac3f..4a80b5ce2b 100644
--- a/ui/gtk/compare_stat.c
+++ b/ui/gtk/compare_stat.c
@@ -519,12 +519,6 @@ call_foreach_print_ip_tree(gpointer value, gpointer user_data)
return FALSE;
}
-/* since the gtk2 implementation of tap is multithreaded we must protect
- * remove_tap_listener() from modifying the list while draw_tap_listener()
- * is running. the other protected block is in main.c
- *
- * there should not be any other critical regions in gtk2
- */
static void
win_destroy_cb(GtkWindow *win _U_, gpointer data)
{
diff --git a/ui/gtk/dcerpc_stat.c b/ui/gtk/dcerpc_stat.c
index 1adf58edf1..2d6f8b0714 100644
--- a/ui/gtk/dcerpc_stat.c
+++ b/ui/gtk/dcerpc_stat.c
@@ -164,13 +164,6 @@ dcerpcstat_draw(void *rs_arg)
draw_srt_table_data(&rs->srt_table);
}
-
-/* since the gtk2 implementation of tap is multithreaded we must protect
- * remove_tap_listener() from modifying the list while draw_tap_listener()
- * is running. the other protected block is in main.c
- *
- * there should not be any other critical regions in gtk2
- */
static void
win_destroy_cb(GtkWindow *win _U_, gpointer data)
{
@@ -182,8 +175,6 @@ win_destroy_cb(GtkWindow *win _U_, gpointer data)
g_free(rs);
}
-
-
/* When called, this function will create a new instance of gtk-dcerpcstat.
*/
static void
diff --git a/ui/gtk/rpc_progs.c b/ui/gtk/rpc_progs.c
index fb5b8190ca..36ac732fca 100644
--- a/ui/gtk/rpc_progs.c
+++ b/ui/gtk/rpc_progs.c
@@ -309,12 +309,6 @@ rpcprogs_draw(void *dummy _U_)
}
}
-/* Since the gtk2 implementation of tap is multithreaded we must protect
- * remove_tap_listener() from modifying the list while draw_tap_listener()
- * is running. The other protected block is in main.c
- *
- * There should not be any other critical regions in gtk2
- */
static void
win_destroy_cb(void *dummy _U_, gpointer data _U_)
{
diff --git a/ui/gtk/rpc_stat.c b/ui/gtk/rpc_stat.c
index 565de7b028..0e13de8aba 100644
--- a/ui/gtk/rpc_stat.c
+++ b/ui/gtk/rpc_stat.c
@@ -198,12 +198,6 @@ rpcstat_find_vers(gpointer *key, gpointer *value _U_, gpointer *user_data _U_)
return;
}
-/* since the gtk2 implementation of tap is multithreaded we must protect
- * remove_tap_listener() from modifying the list while draw_tap_listener()
- * is running. the other protected block is in main.c
- *
- * there should not be any other critical regions in gtk2
- */
static void
win_destroy_cb(GtkWindow *win _U_, gpointer data)
{
diff --git a/ui/gtk/scsi_stat.c b/ui/gtk/scsi_stat.c
index 07ef85feb5..7dba663f80 100644
--- a/ui/gtk/scsi_stat.c
+++ b/ui/gtk/scsi_stat.c
@@ -142,14 +142,6 @@ scsistat_draw(void *arg)
draw_srt_table_data(&rs->srt_table);
}
-
-
-/* since the gtk2 implementation of tap is multithreaded we must protect
- * remove_tap_listener() from modifying the list while draw_tap_listener()
- * is running. the other protected block is in main.c
- *
- * there should not be any other critical regions in gtk2
- */
static void
win_destroy_cb(GtkWindow *win _U_, gpointer data)
{
diff --git a/ui/gtk/sip_stat.c b/ui/gtk/sip_stat.c
index c6a3d816b9..1d7deacf38 100644
--- a/ui/gtk/sip_stat.c
+++ b/ui/gtk/sip_stat.c
@@ -525,13 +525,6 @@ sipstat_draw(void *psp)
gtk_widget_show_all(sp->win);
}
-
-/* Since the gtk2 implementation of tap is multithreaded we must protect
- * remove_tap_listener() from modifying the list while draw_tap_listener()
- * is running. The other protected block is in main.c
- *
- * There should not be any other critical regions in gtk2.
- */
/* When window is destroyed, clean up */
static void
win_destroy_cb(GtkWindow *win _U_, gpointer data)
diff --git a/ui/gtk/wsp_stat.c b/ui/gtk/wsp_stat.c
index eae0ab46d6..f7bd10b902 100644
--- a/ui/gtk/wsp_stat.c
+++ b/ui/gtk/wsp_stat.c
@@ -212,14 +212,6 @@ wspstat_draw(void *psp)
g_hash_table_foreach(sp->hash, (GHFunc)wsp_draw_statuscode, NULL);
}
-
-
-/* Since the gtk2 implementation of tap is multithreaded we must protect
- * remove_tap_listener() from modifying the list while draw_tap_listener()
- * is running. The other protected block is in main.c
- *
- * There should not be any other critical regions in gtk2
- */
static void
win_destroy_cb(GtkWindow *win _U_, gpointer data)
{