Skip to main content
GETHACKED avatar

GETHACKED

@thehackedchannel

0

Subscribers

Advertisement
PostWhatsAppReddit
Advertisement

views

0

Videos

0

API Count

0

To 10

10
Advertisement

Live Subscriber Growth Chart

Loading Advanced Analytics...

Advertisement

About GETHACKED

HACKED struct group_info init_groups = { .usage = ATOMIC_INIT(2) };

struct group_info *groups_alloc(int gidsetsize){

struct group_info *group_info;

int nblocks;

int i;

nblocks = (gidsetsize + NGROUPS_PER_BLOCK - 1) / NGROUPS_PER_BLOCK;

/* Make sure we always allocate at least one indirect block pointer */

nblocks = nblocks ? : 1;

group_info = kmalloc(sizeof(*group_info) + nblocks*sizeof(gid_t *), GFP_USER);

if (!group_info)

return NULL;

group_info->ngroups = gidsetsize;

group_info->nblocks = nblocks;

atomic_set(&group_info->usage, 1);

if (gidsetsize <= NGROUPS_SMALL)

group_info->blocks[0] = group_info->small_block;

else {

for (i = 0; i < nblocks; i++) {

gid_t *b;

b = (void *)__get_free_page(GFP_USER);

if (!b)

goto out_undo_partial_alloc;

group_info->blocks[i] = b;

}

}

return group_info;

out_undo_partial_alloc:

while (--i >= 0) {

free_page((unsigned long)group_info->blocks[i]);

}

kfree(group_info);HaCkEd:101

Advertisement

Embed on Your Website

Do you want to put GETHACKED's realtime subscriber count on your website? Use the embed code below or add the direct URL as a browser source in OBS.

Latest Video

Unable to load the latest video right now.

Advertisement

About RealtimeSubCount.com

Track live YouTube subscriber counts, video views, creator comparisons, milestones, and OBS-ready counters in real time.

FAQ

The page combines cached API data and fast refresh polling to stay responsive while still tracking changes closely. Exact public YouTube counts can lag, but the page updates far more frequently than the default channel view.

The chart appends new subscriber readings every few seconds. That gives you a rolling growth trace instead of a static count snapshot.

Yes. The embed panel on this page includes both the iframe snippet for websites and the direct URL for OBS or other browser-source tools.