< prev index next >

src/hotspot/share/services/diagnosticFramework.cpp

Print this page




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"

  26 #include "memory/oopFactory.hpp"
  27 #include "memory/resourceArea.hpp"
  28 #include "oops/oop.inline.hpp"
  29 #include "prims/jvm.h"
  30 #include "runtime/javaCalls.hpp"
  31 #include "runtime/mutexLocker.hpp"
  32 #include "services/diagnosticArgument.hpp"
  33 #include "services/diagnosticFramework.hpp"
  34 #include "services/management.hpp"
  35 
  36 CmdLine::CmdLine(const char* line, size_t len, bool no_command_name) {
  37   assert(line != NULL, "Command line string should not be NULL");
  38   const char* line_end;
  39   const char* cmd_end;
  40 
  41   _cmd = line;
  42   line_end = &line[len];
  43 
  44   // Skip whitespace in the beginning of the line.
  45   while (_cmd < line_end && isspace((int) _cmd[0])) {
  46     _cmd++;
  47   }
  48   cmd_end = _cmd;
  49 




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "jvm.h"
  27 #include "memory/oopFactory.hpp"
  28 #include "memory/resourceArea.hpp"
  29 #include "oops/oop.inline.hpp"

  30 #include "runtime/javaCalls.hpp"
  31 #include "runtime/mutexLocker.hpp"
  32 #include "services/diagnosticArgument.hpp"
  33 #include "services/diagnosticFramework.hpp"
  34 #include "services/management.hpp"
  35 
  36 CmdLine::CmdLine(const char* line, size_t len, bool no_command_name) {
  37   assert(line != NULL, "Command line string should not be NULL");
  38   const char* line_end;
  39   const char* cmd_end;
  40 
  41   _cmd = line;
  42   line_end = &line[len];
  43 
  44   // Skip whitespace in the beginning of the line.
  45   while (_cmd < line_end && isspace((int) _cmd[0])) {
  46     _cmd++;
  47   }
  48   cmd_end = _cmd;
  49 


< prev index next >