{
  "synLogic": "$api($1);",
  "help": "The purpose of ns_define_syncpoint function is to define a sync point, rather than initiating the accumulation of users at that point. This function is useful when we need to create a sync point using a variable. Therefore, we define the sync points to add their names to the hash table.",
  "notes": "",
  "returns": "void",
  "arguments": "\u003ctable class\u003d\"newGuiTable\" style\u003d\"width:100%\" \u003e \u003ctr\u003e \u003cth\u003e Argument \u003c/th\u003e \u003cth\u003e Description \u003c/th\u003e \u003c/tr\u003e \u003ctr\u003e \u003ctd\u003e Sync name \u003c/td\u003e \u003ctd\u003e Define the sync name upto 64 characters \u003c/td\u003e \u003c/tr\u003e \u003c/table\u003e",
  "parameterization": "",
  "name": "ns_define_syncpoint",
  "syntax": "void ns_define_syncpoint(char *sync_point_name)",
  "javaSyntax": "void ns_define_syncpoint(String sync_point_name)",
  "jsEx": "nsApi.ns_define_syncpoint(\"define_sp\");\n  let sync_point_name; \u003d \"define_sp\";\n  nsApi.ns_sync_point(sync_point_name);\n",
  "cEx": "flow()\n{\n  ns_define_syncpoint(\"define_sp\");\n  char sync_point_name[64] \u003d \"define_sp\";\n  ns_sync_point(sync_point_name);\n}",
  "javaEx": "public class flow implements NsFlow\n{\n  nsApi.ns_define_syncpoint(\"define_sp\");\n  String sync_point_name \u003d \"define_sp\";\n  nsApi.ns_sync_point(sync_point_name);\n}",
  "jsSyntax": "ns_define_syncpoint(sync_point_name: String);",
  "insertStrC": "ns_define_syncpoint(char *sync_point_name);",
  "insertStrJava": "ns_define_syncpoint(String sync_point_name);",
  "insertStrJs": "insertStrJs",
  "description": "The purpose of ns_define_syncpoint function is to define a sync point, rather than initiating the accumulation of users at that point. This function is useful when we need to create a sync point using a variable. Therefore, we define the sync points to add their names to the hash table.",
  "component": [
    {
      "id": "$1",
      "type": "TextField",
      "label": "Sync Point Name",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter Sync Name",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "labelVarCheckbox": "",
      "argIndex": 0,
      "validate": {
        "inputType": "Text",
        "disabled": false,
        "required": true,
        "min": 0,
        "max": 0
      },
      "quotes": true
    } 
  ]
}