Sha256: 70612a87ea6ab848269853c89decc838b150d846f1235c3a9b7a11eadaa7ed76

Contents?: true

Size: 493 Bytes

Versions: 4

Compression:

Stored size: 493 Bytes

Contents

#    This file is part of Metasm, the Ruby assembly manipulation suite
#    Copyright (C) 2006-2009 Yoann GUILLOT
#
#    Licence is LGPL, see LICENCE in the top-level directory


#
# This plugin will create a monitoring process running samples/hotfix_gtk_dbg.rb on the current process (to fix a GTK crash when closing a window)
#

mypid = Process.pid

if (!Process.fork)
	ARGV.clear
	ARGV << mypid
	$VERBOSE = false
	Kernel.load File.join(Metasmdir, 'samples', 'hotfix_gtk_dbg.rb')
	exit!
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
metasm-1.0.5 samples/dasm-plugins/hotfix_gtk_dbg.rb
metasm-1.0.4 samples/dasm-plugins/hotfix_gtk_dbg.rb
metasm-1.0.3 samples/dasm-plugins/hotfix_gtk_dbg.rb
metasm-1.0.2 samples/dasm-plugins/hotfix_gtk_dbg.rb