Skip to content

Commit

Permalink
Merge branch 'heni-fix-long-pids'
Browse files Browse the repository at this point in the history
  • Loading branch information
dvershinin committed Oct 15, 2022
2 parents be8e6de + 6f024b8 commit fc91243
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/pid.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ npid_t PID;
void init_common_PID (void) {
if (!PID.pid) {
int p = getpid ();
// assert (!(p & 0xffff0000));
assert (!(p & 0x80000000));
PID.pid = p;
}
if (!PID.utime) {
Expand Down
4 changes: 2 additions & 2 deletions common/pid.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@
struct process_id {
unsigned ip;
short port;
unsigned short pid;
unsigned int pid;
int utime;
};

struct process_id_ext {
unsigned ip;
short port;
unsigned short pid;
unsigned int pid;
int utime;
int actor_id;
};
Expand Down

0 comments on commit fc91243

Please sign in to comment.