src/hotspot/share/services/attachListener.hpp
changeset 53858 e7cf035682e3
parent 53244 9807daeb47c4
child 54065 f984aca565c1
equal deleted inserted replaced
53851:cc4f5bf6b26b 53858:e7cf035682e3
   104 class AttachOperation: public CHeapObj<mtInternal> {
   104 class AttachOperation: public CHeapObj<mtInternal> {
   105  public:
   105  public:
   106   enum {
   106   enum {
   107     name_length_max = 16,       // maximum length of  name
   107     name_length_max = 16,       // maximum length of  name
   108     arg_length_max = 1024,      // maximum length of argument
   108     arg_length_max = 1024,      // maximum length of argument
   109     arg_count_max = 3           // maximum number of arguments
   109     arg_count_max = 4           // maximum number of arguments
   110   };
   110   };
   111 
   111 
   112   // name of special operation that can be enqueued when all
   112   // name of special operation that can be enqueued when all
   113   // clients detach
   113   // clients detach
   114   static char* detachall_operation_name() { return (char*)"detachall"; }
   114   static char* detachall_operation_name() { return (char*)"detachall"; }