Rizin
unix-like reverse engineering framework and cli tools
no-proctitle.c File Reference
#include "uv.h"
#include "internal.h"
#include <errno.h>
#include <stddef.h>

Go to the source code of this file.

Functions

char ** uv_setup_args (int argc, char **argv)
 
void uv__process_title_cleanup (void)
 
int uv_set_process_title (const char *title)
 
int uv_get_process_title (char *buffer, size_t size)
 

Function Documentation

◆ uv__process_title_cleanup()

void uv__process_title_cleanup ( void  )

Definition at line 32 of file no-proctitle.c.

32  {
33 }

◆ uv_get_process_title()

int uv_get_process_title ( char *  buffer,
size_t  size 
)

Definition at line 39 of file no-proctitle.c.

39  {
40  if (buffer == NULL || size == 0)
41  return UV_EINVAL;
42 
43  buffer[0] = '\0';
44  return 0;
45 }
#define NULL
Definition: cris-opc.c:27
voidpf void uLong size
Definition: ioapi.h:138
Definition: buffer.h:15

References NULL.

◆ uv_set_process_title()

int uv_set_process_title ( const char *  title)

Definition at line 35 of file no-proctitle.c.

35  {
36  return 0;
37 }

◆ uv_setup_args()

char** uv_setup_args ( int  argc,
char **  argv 
)

Definition at line 28 of file no-proctitle.c.

28  {
29  return argv;
30 }
static static fork const void static count static fd const char const char static newpath char char argv
Definition: sflib.h:40

References argv.