--- old/src/jdk.jdwp.agent/share/native/libjdwp/StackFrameImpl.c 2020-01-10 19:18:00.777599911 +0000 +++ new/src/jdk.jdwp.agent/share/native/libjdwp/StackFrameImpl.c 2020-01-10 19:18:00.055584720 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1998, 2005, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1998, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -456,9 +456,12 @@ return JNI_TRUE; } -void *StackFrame_Cmds[] = { (void *)0x4 - ,(void *)getValues - ,(void *)setValues - ,(void *)thisObject - ,(void *)popFrames +CommandSet StackFrame_Cmds = { + 4, "StackFrame", + { + {getValues, "GetValues"}, + {setValues, "SetValues"}, + {thisObject, "ThisObject"}, + {popFrames, "PopFrames"} + } };