Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for pc_to_int (0.07 sec)

  1. src/runtime/runtime-gdb.py

    		except Exception:
    			pass
    	return matcher
    
    goobjfile.pretty_printers.extend([makematcher(var) for var in vars().values() if hasattr(var, 'pattern')])
    #
    #  Utilities
    #
    
    def pc_to_int(pc):
    	# python2 will not cast pc (type void*) to an int cleanly
    	# instead python2 and python3 work with the hex string representation
    	# of the void pointer which we can parse back into an int.
    	# int(pc) will not work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top